如何获得带有“:”的热键(冒号)在 AutoHotKey 中有效吗?
我正在尝试以下操作,但只有第一部分有效:
*^!;::
Send <
return
*^!`:::
Send >
return
显然这不是转义冒号“:”的正确方法。您知道如何执行此操作吗?
I am trying the following but only the first part works:
*^!;::
Send <
return
*^!`:::
Send >
return
Apparently it is not the proper way to escape the colon ":". Do you have any idea on how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
欧文,
试试这个:
我在这里假设 : 字符实际上是 shift ;在你的键盘上。
通过使用 + 和 ;它应该有效。
Erwin,
Try this:
I assume here that the : character is actually shift ; on your keyboard.
By using the + and ; it should work.