Skip to content

Instantly share code, notes, and snippets.

@mokemokechicken
Created June 27, 2012 11:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mokemokechicken/3003414 to your computer and use it in GitHub Desktop.
Save mokemokechicken/3003414 to your computer and use it in GitHub Desktop.
AutoHotKey Script
; AutoHotKey Script
^p::Send {UP}
^n::Send {DOWN}
^f::Send {RIGHT}
^b::Send {LEFT}
^e::Send {END}
^a::^q
^q::^a
^q::Send {Home}
;;
^+p::Send +{UP}
^+n::Send +{DOWN}
^+f::Send +{RIGHT}
^+b::Send +{LEFT}
^+a::Send +{HOME}
^+e::Send +{END}
^h::Send {BS}
^d::Send {Delete}
^k::Send +{END}{Delete}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment