Variable: cider-mark-stale-after-edit
cider-mark-stale-after-edit is a customizable variable defined in
cider-overlays.el.
Value
t
Documentation
Whether editing an evaluated form marks its fringe indicator stale.
When non-nil, editing a top-level form that carries an evaluation fringe
indicator recolors it (cider-fringe-stale-face) to show the form is out of
sync with the REPL, instead of removing the indicator outright. Re-evaluating
the form restores the in-sync indicator.
This variable was added, or its default value changed, in cider version 2.0.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260821.817/cider-overlays.el
(defcustom cider-mark-stale-after-edit t
"Whether editing an evaluated form marks its fringe indicator stale.
When non-nil, editing a top-level form that carries an evaluation fringe
indicator recolors it (`cider-fringe-stale-face') to show the form is out of
sync with the REPL, instead of removing the indicator outright. Re-evaluating
the form restores the in-sync indicator."
:safe #'booleanp
:group 'cider
:type 'boolean
:package-version '(cider . "2.0.0"))