Function: cider--read-symbol
cider--read-symbol is a byte-compiled function defined in
cider-common.el.
Signature
(cider--read-symbol PROMPT &optional DEFAULT)
Documentation
Read a Clojure symbol with PROMPT, defaulting to DEFAULT.
Dispatches on cider-use-completing-read-for-symbol between the
completing-read collection and the traditional minibuffer read.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-common.el
(defun cider--read-symbol (prompt &optional default)
"Read a Clojure symbol with PROMPT, defaulting to DEFAULT.
Dispatches on `cider-use-completing-read-for-symbol' between the
`completing-read' collection and the traditional minibuffer read."
(if cider-use-completing-read-for-symbol
(cider-completing-read-symbol prompt default)
(cider-read-from-minibuffer prompt default)))