Variable: cider-eval-result-position

cider-eval-result-position is a customizable variable defined in cider-overlays.el.

Value

at-eol

Documentation

Where to place result overlays for inline evaluation and the debugger.

If at-eol, place at the end of the line. If at-point, place at the end of the evaluated sexp.

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

Aliases

cider-result-overlay-position (obsolete since 2.0.0)

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-overlays.el
(defcustom cider-eval-result-position 'at-eol
  "Where to place result overlays for inline evaluation and the debugger.
If `at-eol', place at the end of the line.
If `at-point', place at the end of the evaluated sexp."
  :group 'cider
  :type '(choice (const :tag "End of line" at-eol)
                 (const :tag "End of sexp" at-point))
  :package-version '(cider . "2.0.0"))