Variable: cider-result-overlay-position
cider-result-overlay-position is a customizable variable defined in
cider-overlays.el.
Value
at-eol
Documentation
Where to display result overlays for inline evaluation and the debugger.
If at-eol, display at the end of the line.
If at-point, display at the end of the respective sexp.
This variable was added, or its default value changed, in cider version 0.23.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-overlays.el
(defcustom cider-result-overlay-position 'at-eol
"Where to display result overlays for inline evaluation and the debugger.
If `at-eol', display at the end of the line.
If `at-point', display at the end of the respective sexp."
:group 'cider
:type '(choice (const :tag "End of line" at-eol)
(const :tag "End of sexp" at-point))
:package-version '(cider . "0.23.0"))