about summary refs log tree commit diff
path: root/configs/shared/.emacs.d/wpc/packages/wpc-keybindings.el
diff options
context:
space:
mode:
Diffstat (limited to 'configs/shared/.emacs.d/wpc/packages/wpc-keybindings.el')
-rw-r--r--configs/shared/.emacs.d/wpc/packages/wpc-keybindings.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/configs/shared/.emacs.d/wpc/packages/wpc-keybindings.el b/configs/shared/.emacs.d/wpc/packages/wpc-keybindings.el
index fb9c78f0e765..ed508dc7b1fd 100644
--- a/configs/shared/.emacs.d/wpc/packages/wpc-keybindings.el
+++ b/configs/shared/.emacs.d/wpc/packages/wpc-keybindings.el
@@ -75,12 +75,17 @@
   (setq evil-symbol-word-search t)
   (evil-mode 1))
 
+;; TODO: Write `evil-collection' KBDs for `refine'.
 ;; evil keybindings
 (use-package evil-collection
   :after (evil)
   :config
   (evil-collection-init))
 
+;; `evil-collection' does not support `magit', and the preferred way to get evil
+;; kbds for magit is with `evil-magit'.
+(use-package evil-magit)
+
 ;; expose a leader key
 (use-package evil-leader
   :after (evil)
@@ -108,6 +113,7 @@
     "b"   #'ivy-switch-buffer
     "W"   #'balance-windows
     "gs"  #'magit-status
+    "E"   #'refine
 
     "es" #'wpc/create-snippet
     ;; TODO: Replace with `macros/ilambda' when that is working again.