Variable: cider-auto-inspect-after-eval

cider-auto-inspect-after-eval is a customizable variable defined in cider-eval.el.

Value

t

Documentation

Controls whether to auto-update the inspector buffer after eval.

Only applies when the *cider-inspect* buffer is currently visible.

The value selects which evaluations trigger the refresh:
  t or interactive - only interactive evaluations (the default);
  repl - only REPL evaluations;
  all - both interactive and REPL evaluations;
  nil - never.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-eval.el
(defcustom cider-auto-inspect-after-eval t
  "Controls whether to auto-update the inspector buffer after eval.
Only applies when the *cider-inspect* buffer is currently visible.

The value selects which evaluations trigger the refresh:
  t or `interactive' - only interactive evaluations (the default);
  `repl'             - only REPL evaluations;
  `all'              - both interactive and REPL evaluations;
  nil                - never."
  :type '(choice (const :tag "Interactive evaluations (default)" t)
                 (const :tag "Interactive evaluations" interactive)
                 (const :tag "REPL evaluations" repl)
                 (const :tag "All evaluations" all)
                 (const :tag "Never" nil))
  :group 'cider
  :package-version '(cider . "0.25.0"))