Function: consult-register--candidates

consult-register--candidates is an autoloaded and byte-compiled function defined in consult-register.el.

Signature

(consult-register--candidates &optional PRED)

Documentation

Return formatted completion candidates, filtered with PRED.

Source Code

;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult-register.el
(defun consult-register--candidates (&optional pred)
  "Return formatted completion candidates, filtered with PRED."
  (mapcar (lambda (reg) (consult-register-format reg 'completion))
          (consult-register--alist nil pred)))