Function: cider-log--read-framework-name
cider-log--read-framework-name is a byte-compiled function defined in
cider-log.el.
Signature
(cider-log--read-framework-name &optional PROMPT INITIAL-INPUT HISTORY)
Documentation
Read a framework name using PROMPT, INITIAL-INPUT and HISTORY.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
(defun cider-log--read-framework-name (&optional prompt initial-input history)
"Read a framework name using PROMPT, INITIAL-INPUT and HISTORY."
(let ((completion-extra-properties (cider-log--completion-extra-properties '("name")))
(frameworks (cider-sync-request:log-frameworks)))
(completing-read (or prompt "Log framework: ")
(seq-map (lambda (framework)
(list (cider-log-framework-name framework) framework))
frameworks)
nil nil initial-input history)))