Im trying to remap the arrow keys to JKIL only when ctrl is down using the Autohotkey software.
^i::Up
^k::Down
^j::Left
^l::Right
The problem is when ctrl + Key is pressed it sends ctrl + arrow messing everything up.
What i want is (ctrl + Key == arrow) NOT (ctrl + Key == ctrl + arrow), is this possible?