Function: cider--should-prompt-for-symbol
cider--should-prompt-for-symbol is a byte-compiled function defined in
cider-common.el.
Signature
(cider--should-prompt-for-symbol &optional INVERT)
Documentation
Return the value of the variable cider-prompt-for-symbol.
Optionally invert the value, if INVERT is truthy.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-common.el
(defun cider--should-prompt-for-symbol (&optional invert)
"Return the value of the variable `cider-prompt-for-symbol'.
Optionally invert the value, if INVERT is truthy."
(if invert (not cider-prompt-for-symbol) cider-prompt-for-symbol))