From ef1e6dd65c08e5a697e0b269e60d3ce248d34a37 Mon Sep 17 00:00:00 2001 From: Camille TJHOA Date: Fri, 25 Sep 2020 19:19:44 +0200 Subject: [PATCH] Add SPC / in evil-bindings Add SPC / alias for "Search project" (SPC s p) - Searching is one recurring action by developers - Spacemacs has the same keybinding, so it close one gap between Spacemacs and Doom keybindings (#2542) - It's consistent with SPC * "Search for symbol in projet" as it's Vim "*" and "/" equivalent but project-wide --- modules/config/default/+evil-bindings.el | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/config/default/+evil-bindings.el b/modules/config/default/+evil-bindings.el index c96659de4..90a0f48fb 100644 --- a/modules/config/default/+evil-bindings.el +++ b/modules/config/default/+evil-bindings.el @@ -274,6 +274,7 @@ ((featurep! :completion helm) #'helm-resume)) :desc "Search for symbol in project" "*" #'+default/search-project-for-symbol-at-point + :desc "Search project" "/" #'+default/search-project :desc "Find file in project" "SPC" #'projectile-find-file :desc "Jump to bookmark" "RET" #'bookmark-jump