Skip to content

Instantly share code, notes, and snippets.

@Akagi201
Created June 23, 2013 03:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Akagi201/5843719 to your computer and use it in GitHub Desktop.
Save Akagi201/5843719 to your computer and use it in GitHub Desktop.
map j+k to l and map u+i to o, AutoHotKey script
#UseHook
l::
SendInput, {j Down}
SendInput, {k Down}
KeyWait, l
SendInput, {j Up}
SendInput, {k Up}
Return
o::
SendInput, {u Down}
SendInput, {i Down}
KeyWait, o
SendInput, {u Up}
SendInput, {i Up}
Return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment