Function: vcursor-previous-line

vcursor-previous-line is an interactive and byte-compiled function defined in vcursor.el.gz.

Signature

(vcursor-previous-line ARG)

Documentation

Move the virtual cursor back ARG lines.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vcursor.el.gz
(defun vcursor-previous-line (arg)
  "Move the virtual cursor back ARG lines."
  (interactive "p")
  (vcursor-next-line (- arg))
  )