Skip to content

Instantly share code, notes, and snippets.

@tyru
Last active April 2, 2020 02:28
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 tyru/743d2dff3343cbee3258fab7a1b5e1b3 to your computer and use it in GitHub Desktop.
Save tyru/743d2dff3343cbee3258fab7a1b5e1b3 to your computer and use it in GitHub Desktop.
[AutoHotkey] Remap Alt + [A-Z] to Ctrl + [A-Z]
!a::Send, ^a
!b::Send, ^b
!c::Send, ^c
!d::Send, ^d
!e::Send, ^e
!f::Send, ^f
!g::Send, ^g
!h::Send, ^h
!i::Send, ^i
!j::Send, ^j
!k::Send, ^k
!l::Send, ^l
!m::Send, ^m
!n::Send, ^n
!o::Send, ^o
!p::Send, ^p
!q::Send, ^q
!r::Send, ^r
!s::Send, ^s
!t::Send, ^t
!u::Send, ^u
!v::Send, ^v
!w::Send, ^w
!x::Send, ^x
!y::Send, ^y
!z::Send, ^z
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment