Erwin Mayer
Erwin Mayer

Reputation: 18670

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?

Upvotes: 0

Views: 1729

Answers (1)

Robert Ilbrink
Robert Ilbrink

Reputation: 7953

Erwin,

Try this:

+*^!;::
Send >
return

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

By using the + and ; it should work.

Upvotes: 2

Related Questions