Variable: consult-after-jump-hook

consult-after-jump-hook is a customizable variable defined in consult.el.

Value

(recenter)

Documentation

Function called after jumping to a location.

Commonly used functions for this hook are recenter and reposition-window. You may want to add a function which pulses the current line, e.g., pulse-momentary-highlight-one-line. The hook called during preview and for the jump after selection.

Source Code

;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
(defcustom consult-after-jump-hook (list #'recenter)
  "Function called after jumping to a location.

Commonly used functions for this hook are `recenter' and
`reposition-window'.  You may want to add a function which pulses the
current line, e.g., `pulse-momentary-highlight-one-line'.  The hook
called during preview and for the jump after selection."
  :type 'hook)