Variable: consult-point-placement
consult-point-placement is a customizable variable defined in
consult.el.
Value
match-beginning
Documentation
Where to leave point when jumping to a match.
This setting affects the command consult-line and the consult-grep variants.
Source Code
;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
(defcustom consult-point-placement 'match-beginning
"Where to leave point when jumping to a match.
This setting affects the command `consult-line' and the `consult-grep' variants."
:type '(choice (const :tag "Beginning of the line" line-beginning)
(const :tag "Beginning of the match" match-beginning)
(const :tag "End of the match" match-end)))