简体   繁体   中英

How can I get a hotkey with “:” (colon) that works in AutoHotKey?

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?

Erwin,

Try this:

+*^!;::
Send >
return

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

By using the + and ; it should work.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM