Function: cider--prompt-for-symbol-p

cider--prompt-for-symbol-p is a byte-compiled function defined in cider-find.el.

Signature

(cider--prompt-for-symbol-p &optional PREFIX)

Documentation

Check if cider should prompt for symbol.

Tests againsts PREFIX and the value of cider-prompt-for-symbol. Invert meaning of cider-prompt-for-symbol if PREFIX indicates it should be.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-find.el
(defun cider--prompt-for-symbol-p (&optional prefix)
  "Check if cider should prompt for symbol.
Tests againsts PREFIX and the value of `cider-prompt-for-symbol'.
Invert meaning of `cider-prompt-for-symbol' if PREFIX indicates it should be."
  (if (cider--prefix-invert-prompt-p prefix)
      (not cider-prompt-for-symbol) cider-prompt-for-symbol))