diff --git a/default.el b/default.el index 5c143d6..9ef7377 100644 --- a/default.el +++ b/default.el @@ -111,7 +111,7 @@ end tell")) ("C-x p b" . consult-project-buffer) ("M-g g" . consult-goto-line) ("M-g M-g" . consult-goto-line) - ("C-x p g" . consult-grep)) + ("C-x p g" . consult-ripgrep)) (use-package orderless :ensure t diff --git a/emacs-configuration.org b/emacs-configuration.org index b0398cd..a8bcfc4 100644 --- a/emacs-configuration.org +++ b/emacs-configuration.org @@ -742,20 +742,20 @@ There is [[https://github.com/minad/consult?tab=readme-ov-file#available-command #+RESULTS: : consult-goto-line -4. Replace ~project-find-regexp~ (=C-x p g=) with ~consult-grep~: +4. Replace ~project-find-regexp~ (=C-x p g=) with ~consult-ripgrep~: #+headers: :exports none #+headers: :noweb-ref consult-bind #+begin_src emacs-lisp - ("C-x p g" . consult-grep) + ("C-x p g" . consult-ripgrep) #+end_src #+begin_src emacs-lisp - (global-set-key (kbd "C-x p g") 'consult-grep) + (global-set-key (kbd "C-x p g") 'consult-ripgrep) #+end_src #+RESULTS: - : consult-grep + : consult-ripgrep #+headers: :exports none #+headers: :noweb yes