Function: vc-dir-next-line

vc-dir-next-line is an interactive and byte-compiled function defined in vc-dir.el.gz.

Signature

(vc-dir-next-line ARG)

Documentation

Go to the next 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-next-line (arg)
  "Go to the next line.
With prefix argument ARG, move that many lines."
  (interactive "p")
  (if (vc-dir--before-dotname-p)
      (ewoc-goto-node vc-ewoc (ewoc-nth vc-ewoc 0))
    (ewoc-goto-next vc-ewoc arg))
  (vc-dir-move-to-goal-column))