Function: eshell-show-maximum-output
eshell-show-maximum-output is an interactive and byte-compiled
function defined in esh-mode.el.gz.
Signature
(eshell-show-maximum-output &optional INTERACTIVE)
Documentation
Put the end of the buffer at the bottom of the window.
When run interactively, widen the buffer first.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defun eshell-show-maximum-output (&optional interactive)
"Put the end of the buffer at the bottom of the window.
When run interactively, widen the buffer first."
(interactive "p")
(if interactive
(widen))
(goto-char (point-max))
(recenter -1))