aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorVibhav Pant2015-04-19 23:26:09 +0530
committerVibhav Pant2015-04-19 23:26:09 +0530
commitd7f1b8af02eaba2c432a0239f4252a408612fbe5 (patch)
tree30c2bcfa5e039db9bf3e336638fdf2e2e2debe13 /lisp/eshell
parente5bd39b2b4542c0fa87acfe464ef344364540dd9 (diff)
downloademacs-d7f1b8af02eaba2c432a0239f4252a408612fbe5.tar.gz
emacs-d7f1b8af02eaba2c432a0239f4252a408612fbe5.zip
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'.
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/esh-mode.el18
1 files changed, 13 insertions, 5 deletions
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."
871 (goto-char (point-max)) 871 (goto-char (point-max))
872 (recenter -1)) 872 (recenter -1))
873 873
874(defun eshell/clear () 874(defun eshell/clear (&optional scrollback)
875 "Scroll contents of eshell window out of sight, leaving a blank window." 875 "Scroll contents of eshell window out of sight, leaving a blank window.
876If SCROLLBACK is non-nil, clear the scollback contents."
876 (interactive) 877 (interactive)
877 (let ((number-newlines (count-lines (window-start) (point)))) 878 (if scrollback
878 (insert (make-string number-newlines ?\n))) 879 (eshell/clear-scrollback)
879 (eshell-send-input)) 880 (let ((number-newlines (count-lines (window-start) (point))))
881 (insert (make-string number-newlines ?\n))
882 (eshell-send-input))))
883
884(defun eshell/clear-scrollback ()
885 "Clear the scrollback content of the eshell window."
886 (let ((inhibit-read-only t))
887 (erase-buffer)))
880 888
881(defun eshell-get-old-input (&optional use-current-region) 889(defun eshell-get-old-input (&optional use-current-region)
882 "Return the command input on the current line." 890 "Return the command input on the current line."