diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-10-11 14:33:28 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-10-11 14:33:28 +0100 |
commit | 1db5b3312faeaf2c152daf1b324192378570c375 (patch) | |
tree | 3e497dc013a602651f54c483d9e4b9d6b01d0ac6 | |
parent | 9e69d4fd1e8dea30c0a84f2f0a7438583dac47f7 (diff) | |
download | dotfiles-1db5b3312faeaf2c152daf1b324192378570c375.tar.gz |
Turn on next-error-follow-minor-mode in deadgrep-mode
-rw-r--r-- | .emacs.d/lisp/init-search.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-search.el b/.emacs.d/lisp/init-search.el index f1959d8..edc0ce9 100644 --- a/.emacs.d/lisp/init-search.el +++ b/.emacs.d/lisp/init-search.el @@ -170,6 +170,7 @@ (interactive (list (deadgrep--read-search-term))) (let ((include-all t)) (deadgrep search-term))) + :hook (deadgrep-mode . next-error-follow-minor-mode) :bind ("C-c c d" . deadgrep) ("C-c c M-d" . deadgrep-all) |