From 0be422e4293e13095e4c34c00bd2f1c44bc3c932 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Tue, 19 Feb 2019 01:57:10 -0500 Subject: [PATCH] Use Command key as Hyper on macOS stops emacs from interpreting window-manager stuff that it shouldn't --- .emacs.d/init.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.emacs.d/init.el b/.emacs.d/init.el index c3d2f59..d2888d1 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -288,6 +288,10 @@ :bind (("M-p" . backward-paragraph) ("M-n" . forward-paragraph))) +(use-package ns-win + :config + (setq ns-command-modifier 'hyper)) + ;;;; external packages (required) (use-package delight :ensure)