From 0d53c3cbc7ed9690f30858ad27243a8b17f7a547 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Thu, 4 May 2017 08:57:11 +0200 Subject: [PATCH] private/hlissner/+bindings.el: fix C-escape emacs state bindings (#50) --- modules/private/hlissner/+bindings.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/private/hlissner/+bindings.el b/modules/private/hlissner/+bindings.el index 731afb7e2..487973de6 100644 --- a/modules/private/hlissner/+bindings.el +++ b/modules/private/hlissner/+bindings.el @@ -48,8 +48,8 @@ :e "C-k" 'evil-window-up :e "C-l" 'evil-window-right ;; Temporary escape into emacs mode - [C-escape] 'evil-emacs-state - :n [C-escape] 'evil-normal-state + :e [C-escape] 'evil-normal-state + :n [C-escape] 'evil-emacs-state ;; Switching tabs (workspaces) "M-1" (λ! (+workspace/switch-to 0)) "M-2" (λ! (+workspace/switch-to 1))