From 5e329c791b219d652ae8b108ccfaab99cb898ea3 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Thu, 18 Jan 2018 18:50:02 +0100 Subject: [PATCH] =?UTF-8?q?[Misc]=20Don=E2=80=99t=20use=20separate=20key?= =?UTF-8?q?=20mapping=20for=20eyebrowse?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- init.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index 88a13e6..68b5828 100644 --- a/init.el +++ b/init.el @@ -946,9 +946,10 @@ Certificates are assumed to be of the form *.crt." (use-package eyebrowse :commands (eyebrowse-mode) - :init (setq eyebrowse-keymap-prefix (kbd "C-c w")) - :config (setq eyebrowse-mode-line-separator " " - eyebrowse-new-workspace t)) + :config (progn (setq eyebrowse-mode-line-separator " " + eyebrowse-new-workspace t) + (unbind-key eyebrowse-keymap-prefix + eyebrowse-mode-map)))