Skip to content

Instantly share code, notes, and snippets.

@sujang958
Created September 17, 2022 00:31
Show Gist options
  • Save sujang958/7fab502188c91cd9523d3b13ebe552e0 to your computer and use it in GitHub Desktop.
Save sujang958/7fab502188c91cd9523d3b13ebe552e0 to your computer and use it in GitHub Desktop.
AutoHotKey JIKL Arrows Key
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