diff options
author | Alan Pearce | 2013-08-01 13:29:45 +0100 |
---|---|---|
committer | Alan Pearce | 2013-08-01 13:29:45 +0100 |
commit | ae1b7c3d17f24726bfdf1f59a95c6bf0b32824f7 (patch) | |
tree | 9c52de465ee82a822126a6512701a8aadf7f5e63 | |
parent | 496df6c119046e450f4e047bbb6cf0428c7168b9 (diff) | |
download | nixfiles-ae1b7c3d17f24726bfdf1f59a95c6bf0b32824f7.tar.lz nixfiles-ae1b7c3d17f24726bfdf1f59a95c6bf0b32824f7.tar.zst nixfiles-ae1b7c3d17f24726bfdf1f59a95c6bf0b32824f7.zip |
Emacs: make right modifier keys consistent with their left counterparts on OS X
-rw-r--r-- | emacs/init.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/emacs/init.el b/emacs/init.el index 34fab378..2a383eda 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -464,7 +464,9 @@ Values: `desktop', `server', `laptop'") (when (eq system-type 'darwin) (setq mac-option-modifier 'meta mac-control-modifier 'command - mac-command-modifier 'control)) + mac-right-control-modifier 'command + mac-command-modifier 'control + mac-right-command-modifier 'control)) (unbind-key "<f4>") (bind-key "<f5>" #'compile) |