From: Vibhav Pant Date: Sun, 19 Apr 2015 17:56:09 +0000 (+0530) Subject: Add option to eshell/clear to clear scrollback. X-Git-Tag: emacs-25.0.90~2362 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d7f1b8af02eaba2c432a0239f4252a408612fbe5;p=emacs.git Add option to eshell/clear to clear scrollback. * lisp/eshell/esh-mode.el (eshell/clear-scrollback): New function. (eshell/clear): Add an optional SCROLLBACK argument. If non-nil, scrollback contents are cleared. * etc/NEWS: Describe change. * doc/misc/eshell.texi: Add entry for `clear'. --- diff --git a/doc/misc/eshell.texi b/doc/misc/eshell.texi index beaa24a17db..b2fbd7ac267 100644 --- a/doc/misc/eshell.texi +++ b/doc/misc/eshell.texi @@ -298,6 +298,12 @@ with no arguments, prints the current paths in this variable. Define an alias (@pxref{Aliases}). This does not add it to the aliases file. +@item clear +@cmindex clear +Scrolls the contents of the eshell window out of sight, leaving a blank window. +If provided with an optional non-nil argument, the scrollback contents are +cleared instead. + @item date @cmindex date Similar to, but slightly different from, the GNU Coreutils diff --git a/etc/NEWS b/etc/NEWS index 5e312ed3033..5bb84e15a85 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -610,6 +610,7 @@ command line's password prompt. ** Eshell *** The new built-in command `clear' can scroll window contents out of sight. +If provided with an optional non-nil argument, the scrollback contents will be cleared. ** Browse-url diff --git a/lisp/eshell/esh-mode.el b/lisp/eshell/esh-mode.el index 15120cb61d4..54e52b9e7c2 100644 --- a/lisp/eshell/esh-mode.el +++ b/lisp/eshell/esh-mode.el @@ -871,12 +871,20 @@ When run interactively, widen the buffer first." (goto-char (point-max)) (recenter -1)) -(defun eshell/clear () - "Scroll contents of eshell window out of sight, leaving a blank window." +(defun eshell/clear (&optional scrollback) + "Scroll contents of eshell window out of sight, leaving a blank window. +If SCROLLBACK is non-nil, clear the scollback contents." (interactive) - (let ((number-newlines (count-lines (window-start) (point)))) - (insert (make-string number-newlines ?\n))) - (eshell-send-input)) + (if scrollback + (eshell/clear-scrollback) + (let ((number-newlines (count-lines (window-start) (point)))) + (insert (make-string number-newlines ?\n)) + (eshell-send-input)))) + +(defun eshell/clear-scrollback () + "Clear the scrollback content of the eshell window." + (let ((inhibit-read-only t)) + (erase-buffer))) (defun eshell-get-old-input (&optional use-current-region) "Return the command input on the current line."