Function: vi-next-line

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

Signature

(vi-next-line COUNT)

Documentation

Go down count lines, try to keep at the same column.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-next-line (count)
  "Go down count lines, try to keep at the same column."
  (interactive "p")
  (setq this-command 'next-line)	; this is a needed trick
  (if (= (point) (progn (line-move count) (point)))
      (ding)				; no moving, already at end of buffer
    (setq last-command 'next-line)))