Variable: eshell-buffered-print-size
eshell-buffered-print-size is a customizable variable defined in
esh-io.el.gz.
Value
2048
Documentation
The size of the print queue in characters, for doing buffered printing.
Larger values for this option will generally result in faster execution by reducing the overhead associated with each print operation, but will increase the time it takes to see any progress in the output; smaller values will do the reverse.
This variable was added, or its default value changed, in Emacs 30.1.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-io.el.gz
(defcustom eshell-buffered-print-size 2048
"The size of the print queue in characters, for doing buffered printing.
Larger values for this option will generally result in faster execution
by reducing the overhead associated with each print operation, but will
increase the time it takes to see any progress in the output; smaller
values will do the reverse."
:type 'integer
:group 'eshell-io
:version "30.1")