Variable: cider-print-buffer-size

cider-print-buffer-size is a customizable variable defined in cider-client.el.

Value

4096

Documentation

The size in bytes of each value/output chunk when using print streaming.

Smaller values mean smaller data chunks and faster feedback, but they also mean smaller results that can be font-locked as Clojure in the REPL buffers, as only a single chunk result can be font-locked.

The default value in nREPL is 1024.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-client.el
(defcustom cider-print-buffer-size (* 4 1024)
  "The size in bytes of each value/output chunk when using print streaming.
Smaller values mean smaller data chunks and faster feedback, but they also mean
smaller results that can be font-locked as Clojure in the REPL buffers, as only
a single chunk result can be font-locked.

The default value in nREPL is 1024."
  :type 'integer
  :group 'cider
  :package-version '(cider . "0.25.0"))