keyboard shortcuts - Can't remap Ctrl+W to the F2 key in autohotkey -
my mind blown; seems easiest thing but:
w::f2
works
^w::f2
doesn't work no matter what
if mapped ctrl+w, doesn't perform it, doesn't press f2 either.
from file documentation should work... it's not here, either. documentation says "autohotkey's remapping feature described below not pure , effective ...." expected direct remapping doesn't work.
use instead
^w::send,{f2}
Comments
Post a Comment