Function: vc-dir-previous-line
vc-dir-previous-line is an interactive and byte-compiled function
defined in vc-dir.el.gz.
Signature
(vc-dir-previous-line ARG)
Documentation
Go to the previous line.
With prefix argument ARG, move that many lines.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-dir.el.gz
(defun vc-dir-previous-line (arg)
"Go to the previous line.
With prefix argument ARG, move that many lines."
(interactive "p")
(ewoc-goto-prev vc-ewoc arg)
(vc-dir-move-to-goal-column))