Variable: nrepl-orphaned-output-function
nrepl-orphaned-output-function is a variable defined in
nrepl-client.el.
Value
cider--emit-orphaned-output
Documentation
Function called with a RESPONSE whose id has no registered handler.
It runs in the connection buffer and should return non-nil when it handled
the response (e.g. emitted its stdout/stderr somewhere), or nil to let the
dispatcher log the usual "No response handler" message. Higher layers
(CIDER) set this to route stray output - such as prints from a long-lived
core.async go-loop still using a completed eval's id - to the REPL.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/nrepl-client.el
(defvar nrepl-orphaned-output-function nil
"Function called with a RESPONSE whose id has no registered handler.
It runs in the connection buffer and should return non-nil when it handled
the response (e.g. emitted its stdout/stderr somewhere), or nil to let the
dispatcher log the usual \"No response handler\" message. Higher layers
\(CIDER) set this to route stray output - such as prints from a long-lived
core.async go-loop still using a completed eval's id - to the REPL.")