Variable: cider-prompt-for-symbol

cider-prompt-for-symbol is a customizable variable defined in cider-common.el.

Value

nil

Documentation

Controls when to prompt for symbol when a command requires one.

When non-nil, always prompt, and use the symbol at point as the default value at the prompt.

When nil, attempt to use the symbol at point for the command, and only prompt if that throws an error.

This variable was added, or its default value changed, in cider version 0.9.0.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-common.el
(defcustom cider-prompt-for-symbol nil
  "Controls when to prompt for symbol when a command requires one.

When non-nil, always prompt, and use the symbol at point as the default
value at the prompt.

When nil, attempt to use the symbol at point for the command, and only
prompt if that throws an error."
  :type '(choice (const :tag "always" t)
                 (const :tag "dwim" nil))
  :group 'cider
  :package-version '(cider . "0.9.0"))