如何在AutoHotkey中将分号和Esc映射到其他内容?

时间:2018-09-08 06:10:33

标签: autohotkey

如何设置AutoHotkey,以便当我依次按分号和Esc ;esc时,它会执行其他操作? :?*:;Esc:: msgbox, hello world ;; do something ;; Send, {BACKSPACE} ;; remove the ; at last return

1 个答案:

答案 0 :(得分:1)

我不是AHK的超级专家,但我认为您可能无法使用热字符串,而是使用常规热键。另外,我认为您需要将注释标记更改为其他非分号的内容。这是我的尝试:

#CommentFlag // ~;:: KeyWait , Esc , DT2 If !ErrorLevel { Send , {backspace} msgbox } Return