如何设置AutoHotkey,以便当我按顺序分压Esc ;esc
时,它会改为执行其他操作?
:?*:;Esc::
msgbox, hello world
;; do something
;; Send, {BACKSPACE} ;; remove the ; at last
return
我认为你可能无法使用hotstrings,而是使用常规热键。另外,我认为您需要将注释标志更改为不是分号的其他内容。这是我的尝试:
#CommentFlag //
~;::
KeyWait , Esc , DT2
If !ErrorLevel
{
Send , {backspace}
msgbox
}
Return