Function: embark--read-from-history

embark--read-from-history is a byte-compiled function defined in embark.el.

Signature

(embark--read-from-history PROMPT CANDIDATES &optional CATEGORY)

Documentation

Read with completion from list of history CANDIDATES of CATEGORY.

Sorting and history are disabled. PROMPT is the prompt message.

Source Code

;; Defined in ~/.emacs.d/elpa/embark-20260610.302/embark.el
(defun embark--read-from-history (prompt candidates &optional category)
  "Read with completion from list of history CANDIDATES of CATEGORY.
Sorting and history are disabled.  PROMPT is the prompt message."
  (completing-read prompt
                   (embark--with-category category candidates)
                   nil t nil t))