Skip to content

Commit

Permalink
tweak(consult): bind grep/file alongside with rg/fd
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Nov 26, 2023
1 parent 4b66448 commit 845bfb8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/me-completion.el
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,9 @@ This depends on `+cape-hosts' and `+cape-global-capes'."
"gG" #'consult-git-grep
;; search
"ss" (if (executable-find "rg") #'consult-ripgrep #'consult-grep)
"sS" (if (executable-find "rg") #'consult-grep #'consult-ripgrep)
"sf" (if (executable-find "fd") #'consult-fd #'consult-find)
"sF" (if (executable-find "fd") #'consult-find #'consult-fd)
"sM" #'consult-man
"st" #'consult-locate
"sh" #'consult-history
Expand Down

0 comments on commit 845bfb8

Please sign in to comment.