ns-right-option-modifier = none

So the right option key can still be used to insert symbols on macOS.
This commit is contained in:
Henrik Lissner 2020-08-18 19:16:48 -04:00
parent 55b87b3a94
commit 4bc70a8537
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -27,10 +27,11 @@ and Emacs states, and for non-evil users.")
;;; Keybind settings
(cond (IS-MAC
(setq mac-command-modifier 'super
mac-option-modifier 'meta
ns-command-modifier 'super
ns-option-modifier 'meta))
(setq mac-command-modifier 'super
mac-option-modifier 'meta
ns-command-modifier 'super
ns-option-modifier 'meta
ns-right-option-modifier 'none))
(IS-WINDOWS
(setq w32-lwindow-modifier 'super
w32-rwindow-modifier 'super)))