ced*_*lof 2 vim autohotkey keyboard-shortcuts
参考问题Windows 7 Map CTRL + j to the Down Arrow Key
如何像vim一样使用AutoHotKey映射箭头键?
Ctrl+h = Move left
Ctrl+j = Move down
Ctrl+k = Move up
Ctrl+l = Move right
Run Code Online (Sandbox Code Playgroud)
像这样制作一个 AutoHotKey 脚本:
^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
Run Code Online (Sandbox Code Playgroud)