diff options
author | Case Duckworth | 2021-08-11 22:05:26 -0500 |
---|---|---|
committer | Case Duckworth | 2021-08-11 22:05:26 -0500 |
commit | c5bf46887872cf884a8ed1975c9d6de3983b5f5f (patch) | |
tree | e9a3904d48ca0671a8b657df6309b22b04823053 | |
parent | Change {capitalize,upcase,downcase}-word to {}-dwim (diff) | |
download | emacs-c5bf46887872cf884a8ed1975c9d6de3983b5f5f.tar.gz emacs-c5bf46887872cf884a8ed1975c9d6de3983b5f5f.zip |
Use consult-rg BEFORE consult-git-grep
-rw-r--r-- | init.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/init.el b/init.el index bb74a1d..8feab77 100644 --- a/init.el +++ b/init.el | |||
@@ -899,10 +899,10 @@ like a dumbass." | |||
899 | "Perform `consult-git-grep' if in a git project, otherwise `consult-ripgrep' | 899 | "Perform `consult-git-grep' if in a git project, otherwise `consult-ripgrep' |
900 | if ripgrep is installed, otherwise `consult-grep'." | 900 | if ripgrep is installed, otherwise `consult-grep'." |
901 | (interactive "P") | 901 | (interactive "P") |
902 | (cond ((string-equal (vc-backend buffer-file-name) "Git") | 902 | (cond ((executable-find "rg") |
903 | (call-interactively #'consult-git-grep)) | ||
904 | ((executable-find "rg") | ||
905 | (call-interactively #'consult-ripgrep)) | 903 | (call-interactively #'consult-ripgrep)) |
904 | ((string-equal (vc-backend buffer-file-name) "Git") | ||
905 | (call-interactively #'consult-git-grep)) | ||
906 | (t (call-interactively #'consult-grep)))) | 906 | (t (call-interactively #'consult-grep)))) |
907 | 907 | ||
908 | (defun consult-sensible-find (&optional arg) | 908 | (defun consult-sensible-find (&optional arg) |