My goal is to remap ; (semicolon) to Control + k. However that doesn't work since ; starts a comment instead of being recognized as a key.
This is my code:
^k::;
I do have a workaround that kind of works but it is causing a mess with the curly braces:
{ ;Semicolon
^k::
send, {; down}
send, {; up}
return
}
The curly braces after "down" and after "up" are not recognized as brackets but as part of the comment.
}
after the down and up are recognized. From the help doc, "the semicolon must have at least one space or tab to its left." Also, this works for me,^k::Send , {;}
. – EJE