Created
August 8, 2020 01:46
-
-
Save mutoe/b41ed4907ed61b31c15a0a1ab75c157c to your computer and use it in GitHub Desktop.
This file contains 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
#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