From 61ec1d96981e9d42b48b35a0a3b1a0bff3423719 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 29 Oct 2020 02:32:38 -0400 Subject: [PATCH] mac-right-option-modifier = none Then right option can be used for special symbols and left option can be used as meta. --- core/core-keybinds.el | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/core/core-keybinds.el b/core/core-keybinds.el index 84a4fbac4..0024f897b 100644 --- a/core/core-keybinds.el +++ b/core/core-keybinds.el @@ -27,11 +27,12 @@ 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 - ns-right-option-modifier 'none)) + (setq mac-command-modifier 'super + ns-command-modifier 'super + mac-option-modifier 'meta + ns-option-modifier 'meta + mac-right-option-modifier 'none + ns-right-option-modifier 'none)) (IS-WINDOWS (setq w32-lwindow-modifier 'super w32-rwindow-modifier 'super)))