diff --git a/README.md b/README.md index ca6947e..eb32485 100644 --- a/README.md +++ b/README.md @@ -244,6 +244,19 @@ Keybinding | Description Super-m | Magit status Super-o | Open line above current line +#### OSX modifier keys + +Prelude does not mess by default with the standard mapping of `Command` (to `Super`) and `Option` (to `Meta`). + +If you want to swap them add this to your personal config: + +```lisp +(setq mac-command-modifier 'meta) +(setq mac-option-modifier 'super) +``` + +You can also temporarily swap them with `C-c w` (`M-x prelude-swap-meta-and-super`). + #### Projectile Here's a list of functionality provided by [Projectile](https://github.com/bbatsov/projectile): diff --git a/core/prelude-osx.el b/core/prelude-osx.el index 0a83781..3ff897f 100644 --- a/core/prelude-osx.el +++ b/core/prelude-osx.el @@ -39,8 +39,6 @@ (exec-path-from-shell-initialize) ;; It's all in the Meta -(setq mac-command-modifier 'meta) -(setq mac-option-modifier 'super) (setq ns-function-modifier 'hyper) (defun prelude-swap-meta-and-super ()