如何获得带有“:”的热键(冒号)在 AutoHotKey 中有效吗?

发布于 2025-01-02 08:42:14 字数 142 浏览 4 评论 0原文

我正在尝试以下操作,但只有第一部分有效:

*^!;::
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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

呆头 2025-01-09 08:42:14

欧文,

试试这个:

+*^!;::
Send >
return

我在这里假设 : 字符实际上是 shift ;在你的键盘上。

通过使用 + 和 ;它应该有效。

Erwin,

Try this:

+*^!;::
Send >
return

I assume here that the : character is actually shift ; on your keyboard.

By using the + and ; it should work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文