wallen
发表于 2014-2-17 15:41:42
牛人 牛贴 收藏了
nh_wzg
发表于 2014-9-21 20:46:10
原来PB6下面的思考,不知道现在PB7/PB8在中文输入到左下角的自动匹配过程中有没有自动匹配的功能了?
dreamerii
发表于 2014-9-21 23:12:08
太棒了,提高了输入效率,不过用英语最好
小姐可可
发表于 2014-10-10 11:00:13
很有用~thx:)
jlmhljl
发表于 2016-12-14 09:59:32
如何实现打印功能
nhwzg
发表于 2018-10-26 20:10:35
Timestamp.ahk
使用前,需要预先安装AutoHotKey套件,自定义快捷键:【Alt + T】,可修改。
目的就是把备注的内容,嵌入一个可供搜索的【时间戳】
;I have a solution on Windows 7 but not tried on mobile or other windows.
;Install AutoHotKey
;Make this script
;save as today.ahk, or whatever you’d like, this is set so that Alt-t inserts the string “20140602”, I happen to like ISO format without hyphens.
;there are other date formats if you wish.
;—
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
; notes: the ! indicates use of Alt key
!t::
;text := "{#}d-",原来用于WorkFlowy中的时间戳
text := "--"
;trailer := " "
trailer := ""
SendInput %trailer%%text%%A_YYYY%%A_MM%%A_DD%-%A_Hour%%A_Min%%trailer%
;Send %text%%A_YYYY%%A_MM%%A_DD%%trailer%
return
; outputs “20140602 ” with a trailing space, but trailer could be another value
;—