Variable: eshell-buffered-print-redisplay-throttle

eshell-buffered-print-redisplay-throttle is a customizable variable defined in esh-io.el.gz.

Value

0.025

Documentation

The minimum time in seconds between redisplays when using buffered printing.

If nil, don't redisplay while printing.

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-redisplay-throttle 0.025
  "The minimum time in seconds between redisplays when using buffered printing.
If nil, don't redisplay while printing."
  :type '(choice number
                 (const :tag "Don't redisplay" nil))
  :group 'eshell-io
  :version "30.1")