Function: embark--vertico-indicator
embark--vertico-indicator is a byte-compiled function defined in
embark.el.
Signature
(embark--vertico-indicator)
Documentation
Embark indicator highlighting the current Vertico candidate.
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defun embark--vertico-indicator ()
"Embark indicator highlighting the current Vertico candidate."
(let ((fr face-remapping-alist))
(lambda (&optional keymap _targets _prefix)
(when vertico--input
(setq-local face-remapping-alist
(if keymap
(cons '(vertico-current . embark-target) fr)
fr))))))