if you want to use vim cursor keys for directional navigation like h j k l, you could use the following auto hotkey script shared by redditt user dirtywizard.
HJKL navigation while holding down space key Autohotkey script :
#If GetKeyState("Space", "P")$h::Send {LEFT}sendSpace := falsereturn$j::Send {DOWN}sendSpace := falsereturn$k::Send {UP}sendSpace := falsereturn$l::Send {RIGHT}sendSpace := falsereturn#If$Space::sendSpace := truereturn$Space Up::if (sendSpace)SendInput {Space}return
No comments:
Post a Comment