How to map arrow keys with AutoHotKey script as Vim?

Turning to a Windows 7 Map CTRL + j question for a down arrow with an arrow

How can I map arrow keys to AutoHotKey as vim?

Ctrl+h = Move left 
Ctrl+j = Move down 
Ctrl+k = Move up 
Ctrl+l = Move right
0
source share
1 answer

Make an AutoHotKey-script as follows:

^h::
   Send, {Left down}{Left up}
Return

^j::
   Send, {Down down}{Down up}
Return

^k::
   Send, {Up down}{Up up}
Return

^l::
   Send, {Right down}{Right up}
Return
+2
source

All Articles