Variable: cider-auto-track-ns-form-changes

cider-auto-track-ns-form-changes is a customizable variable defined in cider-eval.el.

Value

t

Documentation

Controls whether to auto-evaluate a source buffer's ns form when changed.

When non-nil CIDER will check for ns form changes before each eval command. When nil the users are expected to take care of the re-evaluating updated ns forms manually themselves.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eval.el
(defcustom cider-auto-track-ns-form-changes t
  "Controls whether to auto-evaluate a source buffer's ns form when changed.
When non-nil CIDER will check for ns form changes before each eval command.
When nil the users are expected to take care of the re-evaluating updated
ns forms manually themselves."
  :type 'boolean
  :group 'cider
  :package-version '(cider . "0.15.0"))