Variable: cider-eval-result-duration
cider-eval-result-duration is a customizable variable defined in
cider-overlays.el.
Value
command
Documentation
Duration, in seconds, of CIDER's eval-result overlays.
If nil, overlays last indefinitely.
If the symbol command, they're erased after the next command.
If the symbol change, they last until the next change to the buffer.
Also see cider-use-overlays.
This variable was added, or its default value changed, in cider version 0.10.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-overlays.el
(defcustom cider-eval-result-duration 'command
"Duration, in seconds, of CIDER's eval-result overlays.
If nil, overlays last indefinitely.
If the symbol `command', they're erased after the next command.
If the symbol `change', they last until the next change to the buffer.
Also see `cider-use-overlays'."
:type '(choice (integer :tag "Duration in seconds")
(const :tag "Until next command" command)
(const :tag "Until next buffer change" change)
(const :tag "Last indefinitely" nil))
:group 'cider
:package-version '(cider . "0.10.0"))