Function: term-previous-prompt

term-previous-prompt is an interactive and byte-compiled function defined in term.el.gz.

Signature

(term-previous-prompt N)

Documentation

Move to end of Nth previous prompt in the buffer.

See term-prompt-regexp.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/term.el.gz
(defun term-previous-prompt (n)
  "Move to end of Nth previous prompt in the buffer.
See `term-prompt-regexp'."
  (interactive "p")
  (term-next-prompt (- n)))