Function: cider-log--read-appender-id
cider-log--read-appender-id is a byte-compiled function defined in
cider-log.el.
Signature
(cider-log--read-appender-id PROMPT INITIAL-INPUT HISTORY)
Documentation
Read a appender from the minibuffer using PROMPT, INITIAL-INPUT and HISTORY.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
(defun cider-log--read-appender-id (prompt initial-input history)
"Read a appender from the minibuffer using PROMPT, INITIAL-INPUT and HISTORY."
(let ((table (when cider-log-framework
(when-let (framework (cider-log-framework-reload cider-log-framework))
(seq-map #'cider-log-appender-id (cider-log-framework-appenders framework))))))
(completing-read (or prompt "Log appender: ") table nil nil
(or initial-input cider-log-appender-id)
history cider-log-appender-id)))