Variable: eshell-scroll-to-bottom-on-input
eshell-scroll-to-bottom-on-input is a customizable variable defined in
esh-mode.el.gz.
Value
nil
Documentation
Controls whether input to interpreter 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.
See eshell-preinput-scroll-to-bottom.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defcustom eshell-scroll-to-bottom-on-input nil
"Controls whether input to interpreter 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.
See `eshell-preinput-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)))