Function: vi-next-line-first-nonwhite

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

Signature

(vi-next-line-first-nonwhite COUNT)

Documentation

Go down COUNT lines. Stop at first non-white.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-next-line-first-nonwhite (count)
  "Go down COUNT lines.  Stop at first non-white."
  (interactive "p")
  (if (= (point) (progn (forward-line count) (back-to-indentation) (point)))
      (ding)))				; no moving, already at end of buffer