From d6ef43a56303116cf6eddbb2475e6442f51de20c Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 15 Nov 2020 22:00:56 -0500 Subject: [PATCH] C-s = company-filter-candidates in company-active-map Incrementally filter the candidates list, rather than restart it. --- modules/config/default/+evil-bindings.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/config/default/+evil-bindings.el b/modules/config/default/+evil-bindings.el index 78ddf3716..c7e0dea8a 100644 --- a/modules/config/default/+evil-bindings.el +++ b/modules/config/default/+evil-bindings.el @@ -132,7 +132,7 @@ "C-p" #'company-select-previous-or-abort "C-j" #'company-select-next-or-abort "C-k" #'company-select-previous-or-abort - "C-s" (cmd! (company-search-abort) (company-filter-candidates)) + "C-s" #'company-filter-candidates [escape] #'company-search-abort))) (:when (featurep! :completion ivy)