Last active
April 2, 2020 02:28
-
-
Save tyru/743d2dff3343cbee3258fab7a1b5e1b3 to your computer and use it in GitHub Desktop.
[AutoHotkey] Remap Alt + [A-Z] to Ctrl + [A-Z]
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
!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