我知道?
在热字串(例如:?:btw::by the way
)中使用以允许热字串在字母数字字符后触发。但是,有没有办法让它只在前面有字母数字字符时才触发?例如,它不会触发#btw
or@btw
或:btw
类似。
问问题
748 次
2 回答
0
库RegEx Powered Dynamic Hotstrings可以为您执行此操作。将上述库保存在与您的脚本相同的目录中并运行以下命令:
#Include DynamicHotstrings.ahk
hotstrings("[\w]btw", "btw") ; [\w] is the regular expression for a single character word
Return
btw:
SendInput, by the way
Return
于 2013-06-25T15:09:59.150 回答
0
我唯一能想到的就是hotstring
为每个字母数字字符制作一个。
:?:abtw::by the way
:?:bbtw::by the way
:?:cbtw::by the way
.
.
.
:?:Ybtw::by the way
:?:Zbtw::by the way
:?:1btw::by the way
.
.
.
于 2013-06-25T09:53:34.123 回答