Created
October 18, 2015 07:51
-
-
Save hadynz/332daae7845928726c37 to your computer and use it in GitHub Desktop.
AutoHotkey script for remapping Mac keys for better programming on Windows
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
; Remap Right Windows Key to Alt | |
RWin::RAlt | |
; Remap Right Alt to Ctrl | |
RAlt::RCtrl | |
; Remap Right Alt + Space to Ctrl + Space | |
RAlt & Space::Send ^{Space} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment