GNU bug report logs - #76077
Add grep-hook in harmony with occur-hook

Previous Next

Package: emacs;

Reported by: Ship Mints <shipmints <at> gmail.com>

Date: Wed, 5 Feb 2025 19:08:02 UTC

Severity: normal

Merged with 76078

Full log


View this message in rfc822 format

From: Juri Linkov <juri <at> linkov.net>
To: Ship Mints <shipmints <at> gmail.com>
Cc: 76077 <at> debbugs.gnu.org
Subject: bug#76077: Add grep-hook in harmony with occur-hook
Date: Thu, 06 Feb 2025 09:39:11 +0200
> grep is missing a hook similar to occur-hook. It is very useful to know
> when results are returned and also to perform operations on the resulting
> buffer.

Does this work for you?

#+begin_src emacs-lisp
(add-hook 'compilation-finish-functions
          (lambda (cur-buffer msg)
            (when (and (string-match-p "finished" msg)
                       (eq (with-current-buffer cur-buffer major-mode)
                           'grep-mode)) ;; i.e. not compilation-mode
              (message "Grep finished in %s" cur-buffer))))
#+end_src




This bug report was last modified 193 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.