Skip to content

Instantly share code, notes, and snippets.

@mutoe
Created August 8, 2020 01:46
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 mutoe/b41ed4907ed61b31c15a0a1ab75c157c to your computer and use it in GitHub Desktop.
Save mutoe/b41ed4907ed61b31c15a0a1ab75c157c to your computer and use it in GitHub Desktop.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
Tab::Send {Tab}
Tab & J::Send {Down}
Tab & U::Send {Shift Down}
Tab & K::Send {Up}
Tab & I::Send {Shift Up}
Tab & H::Send {Left}
Tab & Y::Send {Shift Left}
Tab & L::Send {Right}
Tab & O::Send {Shift Right}
Tab & N::Send {Home}
Tab & SC034::Send {End}
Tab & M::Send {PgDn}
Tab & SC033::Send {PgUp}
+Esc::Send {~}
Tab & Esc::Send {sc029}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment