[Misc] Don’t use separate key mapping for eyebrowse

This commit is contained in:
Daniel - 2018-01-18 18:50:02 +01:00
parent 18e943f6d2
commit 5e329c791b
Signed by: dbo
GPG Key ID: 4F63DB96D45AA9C6
1 changed files with 4 additions and 3 deletions

View File

@ -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)))