From 35bf785f758699d3813b44a28079369731ea1f02 Mon Sep 17 00:00:00 2001 From: Oleksii Filonenko Date: Thu, 27 Dec 2018 17:26:29 +0200 Subject: [PATCH] [config/default] Fix C-S-s in company minibuffer --- modules/config/default/+evil-bindings.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/config/default/+evil-bindings.el b/modules/config/default/+evil-bindings.el index 5e295c331..256bfdb8b 100644 --- a/modules/config/default/+evil-bindings.el +++ b/modules/config/default/+evil-bindings.el @@ -246,8 +246,8 @@ "C-u" #'company-previous-page "C-d" #'company-next-page "C-s" #'company-filter-candidates - "C-S-s" `(,(cond ((featurep! :completion helm) #'helm-company) - ((featurep! :completion ivy) #'counsel-company))) + "C-S-s" (cond ((featurep! :completion helm) #'helm-company) + ((featurep! :completion ivy) #'counsel-company))) "C-SPC" #'company-complete-common [tab] #'company-complete-common-or-cycle [backtab] #'company-select-previous)