From fe2ffa525cfec930db5316ad940a69c737a3fa4f Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 13 Mar 2018 01:25:48 -0400 Subject: [PATCH] config/default: fix C-b/C-f in evil ex command line --- modules/config/default/+bindings.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/config/default/+bindings.el b/modules/config/default/+bindings.el index d14df16fb..2b64eb399 100644 --- a/modules/config/default/+bindings.el +++ b/modules/config/default/+bindings.el @@ -736,7 +736,9 @@ (:after evil (:map evil-ex-completion-map - "C-a" #'move-beginning-of-line)) + "C-a" #'move-beginning-of-line + "C-b" #'backward-word + "C-f" #'forward-word)) (:map messages-buffer-mode-map "M-;" #'eval-expression