Function: cider-log--read-threads

cider-log--read-threads is a byte-compiled function defined in cider-log.el.

Signature

(cider-log--read-threads &optional PROMPT INITIAL-INPUT HISTORY)

Documentation

Read a list of threads using PROMPT, INITIAL-INPUT and HISTORY.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
(defun cider-log--read-threads (&optional prompt initial-input history)
  "Read a list of threads using PROMPT, INITIAL-INPUT and HISTORY."
  (let ((table (when (cider-log-appender-attached-p)
                 (nrepl-dict-keys (cider-sync-request:log-threads
                                   cider-log-framework cider-log-appender)))))
    (completing-read-multiple (or prompt "Threads: ") table nil nil initial-input history)))