Create a script with AutoHotKey to use space and letter to emulate direction arrow key.
This is useful for programming because I use alot of the arrows keys and it takes time to move my hand to the arrow keys.
space & j::Send {Left}
space & i::Send {Up}
space & k::Send {Down}
space & l::Send {Right}
$space::send,{space} ;
This is useful for programming because I use alot of the arrows keys and it takes time to move my hand to the arrow keys.
space & j::Send {Left}
space & i::Send {Up}
space & k::Send {Down}
space & l::Send {Right}
$space::send,{space} ;
Comments
Post a Comment