Function: embark--vertico-candidates
embark--vertico-candidates is a byte-compiled function defined in
embark.el.
Signature
(embark--vertico-candidates)
Documentation
Collect the current Vertico candidates.
Return the category metadatum as the type of the candidates.
Source Code
;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defun embark--vertico-candidates ()
"Collect the current Vertico candidates.
Return the category metadatum as the type of the candidates."
(when vertico--input
;; Force candidate computation, if candidates are not yet available.
(vertico--update)
(cons (completion-metadata-get (embark--metadata) 'category)
vertico--candidates)))