Function: vi-previous-line-first-nonwhite

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

Signature

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

Documentation

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

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
      (ding)))				; no moving, already at end of buffer

(defun vi-previous-line-first-nonwhite (count)
  "Go up COUNT lines.  Stop at first non-white."
  (interactive "p")
  (forward-line (- count))
  (back-to-indentation))