Function: cider-read-symbol-name

cider-read-symbol-name is a byte-compiled function defined in cider-common.el.

Signature

(cider-read-symbol-name PROMPT CALLBACK)

Documentation

Read a symbol name using PROMPT with a default of the one at point.

Use CALLBACK as the completing read var callback.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-common.el
(defun cider-read-symbol-name (prompt callback)
  "Read a symbol name using PROMPT with a default of the one at point.
Use CALLBACK as the completing read var callback."
  (funcall callback (cider-read-from-minibuffer
                     prompt
                     ;; if the thing at point is a keyword we treat it as symbol
                     (cider--kw-to-symbol (cider-symbol-at-point 'look-back)))))