Created
September 17, 2022 00:31
-
-
Save sujang958/7fab502188c91cd9523d3b13ebe552e0 to your computer and use it in GitHub Desktop.
AutoHotKey JIKL Arrows Key
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ALT::return | |
!k:: Send {Down} | |
!i:: Send {Up} | |
!j:: Send {Left} | |
!l:: Send {Right} | |
+!k:: Send +{Down} | |
+!i:: Send +{Up} | |
+!j:: Send +{Left} | |
+!l:: Send +{Right} | |
^!j:: Send ^{Left} | |
^!l:: Send ^{Right} | |
+^!j:: Send ^+{Left} | |
+^!l:: Send ^+{Right} | |
!h:: Send {Home} | |
!;:: Send {End} | |
+!h:: Send +{Home} | |
+!;:: Send +{End} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment