From 85b5103cd9c1405b80d0fb5f690588f013a86f98 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 10 Aug 2020 19:36:05 -0400 Subject: [PATCH] Fix #3717: command = super, option = meta --- core/core-keybinds.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/core-keybinds.el b/core/core-keybinds.el index d17a313bf..0a955418c 100644 --- a/core/core-keybinds.el +++ b/core/core-keybinds.el @@ -28,7 +28,9 @@ and Emacs states, and for non-evil users.") (cond (IS-MAC (setq mac-command-modifier 'super - mac-option-modifier 'meta)) + mac-option-modifier 'meta + ns-command-modifier 'super + ns-option-modifier 'meta)) (IS-WINDOWS (setq w32-lwindow-modifier 'super w32-rwindow-modifier 'super)))