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 faster first feedback, but also more messages for large results, with the associated decoding overhead.
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-20260821.817/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 faster first feedback, but also more messages for large
results, with the associated decoding overhead.
The default value in nREPL is 1024."
:type 'integer
:group 'cider
:package-version '(cider . "0.25.0"))