Variable: comint-scroll-to-bottom-on-input

comint-scroll-to-bottom-on-input is a customizable variable defined in comint.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.

The default is nil.

See comint-preinput-scroll-to-bottom. This variable is buffer-local.

View in manual

Probably introduced at or before Emacs version 19.20.

Source Code

;; Defined in /usr/src/emacs/lisp/comint.el.gz
(defcustom comint-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.

The default is nil.

See `comint-preinput-scroll-to-bottom'.  This variable is buffer-local."
  :type '(choice (const :tag "off" nil)
		 (const t)
		 (const all)
		 (const this))
  :group 'comint)