Function: cider--subscribe-repl-to-server-out

cider--subscribe-repl-to-server-out is a byte-compiled function defined in cider-connection.el.

Signature

(cider--subscribe-repl-to-server-out)

Documentation

Subscribe to the nREPL server's *out*.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-connection.el
(defun cider--subscribe-repl-to-server-out ()
  "Subscribe to the nREPL server's *out*."
  ;; Server *out* only streams stdout/stderr, so use a minimal handler that
  ;; routes just those, rather than the full interactive-eval handler with its
  ;; value/done/error machinery.
  (cider-nrepl-send-request '("op" "cider/out-subscribe")
                            (nrepl-make-eval-handler
                             :on-stdout #'cider-emit-interactive-eval-output
                             :on-stderr #'cider-emit-interactive-eval-err-output)))