From 1c4f785df1dc913b8b96db602c2327c68c783acd Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 18 Jun 2018 11:29:08 +0200 Subject: [PATCH] Bind C-s to *-minibuffer-history in evil-ex Thanks to #fuxialexander --- modules/config/default/+bindings.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/config/default/+bindings.el b/modules/config/default/+bindings.el index 3edf3f22d..783e2def0 100644 --- a/modules/config/default/+bindings.el +++ b/modules/config/default/+bindings.el @@ -768,6 +768,9 @@ [M-backspace] #'doom/backward-kill-to-bol-and-indent) (define-key! evil-ex-completion-map + "\C-s" (if (featurep! :completion ivy) + #'counsel-minibuffer-history + #'helm-minibuffer-history) "\C-a" #'move-beginning-of-line "\C-b" #'backward-word "\C-f" #'forward-word)