Re: ViEmu and AutoHotKey fun together.
Using up down keys for intellisense and other navigation is really annoing thing.
Now, when CapsLock on you can use
j - down
k - up
u - Esc
i - Enter
install autohotkey and use this script
Capslock::
UpdateCapslock()
return
UpdateCapslock()
{
If GetKeyState("Capslock", "T") = 0
{
SetCapsLockState, on
Gui, +ToolWindow
Gui, Show, x-1 w1 +NoActivate, CapslockVim
}
Else
{
SetCapsLockState, off
Gui, Destroy
}
}
#IfWinExist, CapslockVim
j::Down
k::Up
i::Enter
u::
Send {Esc}
UpdateCapslock()
return
#IfWinExist,