Variable: cider-repl--result-start
cider-repl--result-start is a buffer-local variable defined in
cider-repl.el.
Documentation
Marker at the start of the current, possibly chunked, result value.
It is set when the first chunk of a result is emitted and cleared by
cider-repl--finalize-result, which uses it together with
cider-repl--result-end to Clojure-font-lock the assembled value once it is
complete. See cider-repl-emit-result.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-repl.el
(defvar-local cider-repl--result-start nil
"Marker at the start of the current, possibly chunked, result value.
It is set when the first chunk of a result is emitted and cleared by
`cider-repl--finalize-result', which uses it together with
`cider-repl--result-end' to Clojure-font-lock the assembled value once it is
complete. See `cider-repl-emit-result'.")