Last active
June 22, 2018 20:50
-
-
Save wordyallen/e6594e98888dceacfb8df96c7efe561f to your computer and use it in GitHub Desktop.
Autohotkey remapping for mac style keys
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
LS_COLORS=$LS_COLORS:'ow=1;34:tw=1;34:' ; export LS_COLORS |
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
LCtrl & Tab::AltTab | |
^q::Send !{F4} | |
^h::WinMinimize, A | |
^i::Send !{Enter} | |
^BackSpace::Send {Delete} | |
LCtrl & Space::Send #{s} | |
#If GetKeyState("LCtrl", "P") | |
LAlt & f::WinMaximize, A | |
#If GetKeyState("LCtrl", "P") | |
LAlt & Left::Send #{Left} | |
#If GetKeyState("LCtrl", "P") | |
LAlt & Right::Send #{Right} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Todo