Skip to content

Instantly share code, notes, and snippets.

@xcodebuild
Last active April 4, 2020 12:13
Show Gist options
  • Save xcodebuild/3edcf0c61c146aa1969cd0d5010e561e to your computer and use it in GitHub Desktop.
Save xcodebuild/3edcf0c61c146aa1969cd0d5010e561e 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.
!c::send ^c
!x::send ^x
!v::send ^v
!l::send ^l
!s::send ^s
!w::send ^w
!z::send ^z
![::send ^[
!]::send ^]
!a::send ^a
!r::send ^r
!t::send ^t
!f::send ^f
!+]::send ^{tab}
!+[::send ^+{tab}
!+t::send ^+t
!#i::send ^+i
!LButton::send ^{LButton}
!1::send ^1
!2::send ^2
!3::send ^3
!4::send ^4
!5::send ^5
!6::send ^6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment