Function: eshell-previous-prompt
eshell-previous-prompt is an interactive and byte-compiled function
defined in em-prompt.el.gz.
Signature
(eshell-previous-prompt &optional N)
Documentation
Move to end of Nth previous prompt in the buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/em-prompt.el.gz
(defun eshell-previous-prompt (&optional n)
"Move to end of Nth previous prompt in the buffer."
(interactive "p")
(eshell-next-prompt (- (or n 1))))