diff options
author | Alan Pearce | 2013-08-28 09:00:11 +0100 |
---|---|---|
committer | Alan Pearce | 2013-09-09 14:09:28 +0100 |
commit | 17147f0bb602a34f7b1cb669718813339fa21400 (patch) | |
tree | c216286f66b7a33380b41e9eb1141d8c9b471584 /emacs | |
parent | 6e26c674b93629c3d1cfeb79d6c6f2268510a420 (diff) | |
download | dotfiles-17147f0bb602a34f7b1cb669718813339fa21400.tar.lz dotfiles-17147f0bb602a34f7b1cb669718813339fa21400.tar.zst dotfiles-17147f0bb602a34f7b1cb669718813339fa21400.zip |
Emacs: Switch control and command on OSX
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/init.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/init.el b/emacs/init.el index dd73f19..b70f90b 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -476,9 +476,9 @@ Values: `desktop', `server', `laptop'") (set-keyboard-coding-system nil) (setq mac-option-modifier 'meta mac-right-option-modifier 'left - mac-control-modifier 'super + mac-control-modifier 'control mac-right-control-modifier 'left - mac-command-modifier 'control + mac-command-modifier 'super mac-right-command-modifier 'left mac-function-modifier 'hyper)) |