Function: term-show-maximum-output

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

Signature

(term-show-maximum-output)

Documentation

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

Key Bindings

Source Code

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