Variable: cider-redirect-server-output-to-repl

cider-redirect-server-output-to-repl is a customizable variable defined in cider-connection.el.

Value

t

Documentation

Controls whether nREPL server output would be redirected to the REPL.

When non-nil the output would end up in both the nrepl-server buffer (when available) and the matching REPL buffer.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-connection.el
(defcustom cider-redirect-server-output-to-repl  t
  "Controls whether nREPL server output would be redirected to the REPL.
When non-nil the output would end up in both the nrepl-server buffer (when
available) and the matching REPL buffer."
  :type 'boolean
  :group 'cider
  :safe #'booleanp
  :package-version '(cider . "0.17.0"))