Variable: eshell-scroll-to-bottom-on-output
eshell-scroll-to-bottom-on-output is a customizable variable defined
in esh-mode.el.gz.
Value
nil
Documentation
Controls whether interpreter output causes window to scroll.
If nil, then do not scroll. If t or all, scroll all windows showing
buffer. If this, scroll only the selected window. If others,
scroll only those that are not the selected window.
See variable eshell-scroll-show-maximum-output and function
eshell-postoutput-scroll-to-bottom.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defcustom eshell-scroll-to-bottom-on-output nil
"Controls whether interpreter output causes window to scroll.
If nil, then do not scroll. If t or `all', scroll all windows showing
buffer. If `this', scroll only the selected window. If `others',
scroll only those that are not the selected window.
See variable `eshell-scroll-show-maximum-output' and function
`eshell-postoutput-scroll-to-bottom'."
:type '(radio (const :tag "Do not scroll Eshell windows" nil)
(const :tag "Scroll all windows showing the buffer" all)
(const :tag "Scroll only the selected window" this)
(const :tag "Scroll all windows other than selected" others)))