Function: eshell/clear-scrollback

eshell/clear-scrollback is a byte-compiled function defined in esh-mode.el.gz.

Signature

(eshell/clear-scrollback)

Documentation

Clear the scrollback content of the eshell window.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defun eshell/clear-scrollback ()
  "Clear the scrollback content of the eshell window."
  (let ((inhibit-read-only t))
    (erase-buffer)))