Variable: cider-eval-output-destination

cider-eval-output-destination is a customizable variable defined in cider-eval.el.

Value

repl-buffer

Documentation

The destination for stdout and stderr produced from interactive evaluation.

If repl-buffer (the default), the output is sent to the current REPL buffer. If output-buffer, it's sent to a dedicated *cider-out* buffer.

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

Aliases

cider-interactive-eval-output-destination (obsolete since 2.0.0)

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260821.817/cider-eval.el
(defcustom cider-eval-output-destination 'repl-buffer
  "The destination for stdout and stderr produced from interactive evaluation.
If `repl-buffer' (the default), the output is sent to the current REPL buffer.
If `output-buffer', it's sent to a dedicated `*cider-out*' buffer."
  :type '(choice (const :tag "REPL buffer" repl-buffer)
                 (const :tag "Dedicated output buffer" output-buffer))
  :group 'cider
  :package-version '(cider . "2.0.0"))