Created
April 19, 2009 13:07
-
-
Save cheeaun/98061 to your computer and use it in GitHub Desktop.
AutoHotkey script to map Alt key to work like Ctrl AKA Mac-style Cmd key, on Windows.
This file contains hidden or 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
LAlt & x::Send ^x | |
LAlt & c::Send ^c | |
LAlt & v::Send ^v | |
LAlt & s::Send ^s | |
LAlt & w::Send ^w | |
LAlt & q::Send !{F4} | |
LAlt & f::Send ^f | |
LAlt & t::Send ^t | |
LAlt & z::Send ^z | |
LAlt & r::Send ^r | |
LAlt & a::Send ^a | |
LAlt & g::Send ^g |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment