Variable: cider-interactive-eval-output-destination

cider-interactive-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.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eval.el
(defcustom cider-interactive-eval-output-destination 'repl-buffer
  "The destination for stdout and stderr produced from interactive evaluation."
  :type '(choice (const output-buffer)
                 (const repl-buffer))
  :group 'cider
  :package-version '(cider . "0.7.0"))