From 4bc70a8537022eef078fdff43c2df9c145cb6377 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 18 Aug 2020 19:16:48 -0400 Subject: [PATCH] ns-right-option-modifier = none So the right option key can still be used to insert symbols on macOS. --- core/core-keybinds.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/core/core-keybinds.el b/core/core-keybinds.el index 0a955418c..55f9ae7b1 100644 --- a/core/core-keybinds.el +++ b/core/core-keybinds.el @@ -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)))