Function: consult--line-multi-match

consult--line-multi-match is a byte-compiled function defined in consult.el.

Signature

(consult--line-multi-match SELECTED CANDIDATES &rest _)

Documentation

Lookup position of match.

SELECTED is the currently selected candidate. CANDIDATES is the list of candidates.

Source Code

;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
;;;;; Command: consult-line-multi

(defun consult--line-multi-match (selected candidates &rest _)
  "Lookup position of match.
SELECTED is the currently selected candidate.
CANDIDATES is the list of candidates."
  (consult--line-point-placement selected candidates
                                 (car (member selected candidates))))