Variable: embark-candidate-collectors

embark-candidate-collectors is a customizable variable defined in embark.el.

Value

(embark-selected-candidates embark--vertico-candidates
			    embark-minibuffer-candidates
			    embark-completion-list-candidates
			    embark-dired-candidates
			    embark-ibuffer-candidates
			    embark-embark-collect-candidates
			    embark-custom-candidates)

Documentation

List of functions that collect all candidates in a given context.

These are used to fill an Embark Collect buffer. Each function should return either nil (to indicate it found no candidates) or a list whose first element is a symbol indicating the type of candidates and whose cdr is the list of candidates, each of which should be either a string or a dotted list of the form (TARGET START . END), where START and END are the buffer positions bounding the TARGET string.

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defcustom embark-candidate-collectors
  '(embark-selected-candidates
    embark-minibuffer-candidates
    embark-completion-list-candidates
    embark-dired-candidates
    embark-ibuffer-candidates
    embark-embark-collect-candidates
    embark-custom-candidates)
  "List of functions that collect all candidates in a given context.
These are used to fill an Embark Collect buffer.  Each function
should return either nil (to indicate it found no candidates) or
a list whose first element is a symbol indicating the type of
candidates and whose `cdr' is the list of candidates, each of
which should be either a string or a dotted list of the
form (TARGET START . END), where START and END are the buffer
positions bounding the TARGET string."
  :type 'hook)