From eac0c0b09e791f707aa403f2d44d4c3dcf31ac97 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 31 Aug 2018 12:08:40 +0200 Subject: [PATCH] Fix M-` keybind on MacOS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Escaping it causes it to map à instead. --- modules/config/default/+bindings.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/config/default/+bindings.el b/modules/config/default/+bindings.el index f5057b1d7..a6c197e33 100644 --- a/modules/config/default/+bindings.el +++ b/modules/config/default/+bindings.el @@ -76,7 +76,7 @@ "C-x p" #'+popup/other (:when IS-MAC - "\M-`" #'other-frame) + "M-`" #'other-frame) ;; --- Personal vim-esque bindings ------------------