如何将分号和Esc映射到AutoHotkey中的其他东西?

问题描述 投票:0回答:1

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

autohotkey
1个回答
1
投票

我认为你可能无法使用hotstrings,而是使用常规热键。另外,我认为您需要将注释标志更改为不是分号的其他内容。这是我的尝试:

#CommentFlag //
~;::
KeyWait , Esc , DT2
If !ErrorLevel
{
    Send , {backspace}
    msgbox
}
Return
© www.soinside.com 2019 - 2024. All rights reserved.