Function: eshell-backward-paragraph
eshell-backward-paragraph is an interactive and byte-compiled function
defined in em-prompt.el.gz.
Signature
(eshell-backward-paragraph &optional N)
Documentation
Move to the beginning of the Nth previous prompt in the buffer.
Like backward-paragraph, but navigates using fields.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/em-prompt.el.gz
(defun eshell-backward-paragraph (&optional n)
"Move to the beginning of the Nth previous prompt in the buffer.
Like `backward-paragraph', but navigates using fields."
(interactive "p")
(eshell-forward-paragraph (- (or n 1))))