diff options
-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) |