From 45bb7256cbea456e035ebf19b901744df1c0f0a0 Mon Sep 17 00:00:00 2001 From: Aria Date: Sun, 23 Dec 2018 18:43:16 +1100 Subject: [PATCH] Bind SPC-/-d to helm too --- modules/config/default/+evil-bindings.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/config/default/+evil-bindings.el b/modules/config/default/+evil-bindings.el index b0c4b2126..aa862020a 100644 --- a/modules/config/default/+evil-bindings.el +++ b/modules/config/default/+evil-bindings.el @@ -506,7 +506,9 @@ (:prefix ("/" . "search") :desc "Jump to symbol across buffers" "I" #'imenu-anywhere :desc "Search buffer" "b" #'swiper - :desc "Search current directory" "d" #'+ivy/project-search-from-cwd + :desc "Search current directory" "d" + (cond ((featurep! :completion helm) #'+helm/project-search-from-cwd) + ((featurep! :completion ivy) #'+ivy/project-search-from-cwd)) :desc "Jump to symbol" "i" #'imenu :desc "Jump to link" "l" #'ace-link :desc "Look up online" "o" #'+lookup/online-select