Function: comint-show-maximum-output

comint-show-maximum-output is an interactive and byte-compiled function defined in comint.el.gz.

Signature

(comint-show-maximum-output)

Documentation

Put the end of the buffer at the bottom of the window.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/comint.el.gz
(defun comint-show-maximum-output ()
  "Put the end of the buffer at the bottom of the window."
  (interactive nil comint-mode)
  (goto-char (point-max))
  (recenter (- -1 scroll-margin)))