Variable: cider-use-overlays
cider-use-overlays is a customizable variable defined in
cider-overlays.el.
Value
both
Documentation
Whether to display evaluation results with overlays.
If t, use overlays determined by cider-result-overlay-position.
If errors-only, use overlays determined by cider-result-overlay-position,
but only for error messages - other messages will be displayed on the echo area.
If nil, display on the echo area.
If both, display on both places.
Only applies to evaluation commands. To configure the debugger overlays,
see cider-debug-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-use-overlays 'both
"Whether to display evaluation results with overlays.
If t, use overlays determined by `cider-result-overlay-position'.
If `errors-only', use overlays determined by `cider-result-overlay-position',
but only for error messages - other messages will be displayed on the echo area.
If nil, display on the echo area.
If `both', display on both places.
Only applies to evaluation commands. To configure the debugger overlays,
see `cider-debug-use-overlays'."
:type '(choice (const :tag "Display using overlays" t)
(const :tag "Display in echo area" nil)
(const :tag "Both" both))
:group 'cider
:package-version '(cider . "0.10.0"))