Function: consult-grep-match

consult-grep-match is an autoloaded, interactive and byte-compiled function defined in consult.el.

Signature

(consult-grep-match &optional ARG)

Documentation

Jump to grep matches related to the current project or file.

This command collects entries from all related Grep buffers. The command supports preview of the currently selected match. With prefix ARG, jump to the match in the Grep buffer, instead of to the actual location of the match. This command is a thin wrapper around consult-compile-error.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
;;;###autoload
(defun consult-grep-match (&optional arg)
  "Jump to grep matches related to the current project or file.

This command collects entries from all related Grep buffers.  The
command supports preview of the currently selected match.  With prefix
ARG, jump to the match in the Grep buffer, instead of to the actual
location of the match.  This command is a thin wrapper around
`consult-compile-error'."
  (interactive "P")
  (consult-compile-error arg t))