Function: vip-bol-and-skip-white

vip-bol-and-skip-white is an interactive and byte-compiled function defined in vip.el.gz.

Signature

(vip-bol-and-skip-white ARG)

Documentation

Beginning of line at first non-white character.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/vip.el.gz
(defun vip-bol-and-skip-white (arg)
  "Beginning of line at first non-white character."
  (interactive "P")
  (let ((val (vip-p-val arg)) (com (vip-getcom arg)))
    (if com (move-marker vip-com-point (point)))
    (back-to-indentation)
    (if com (vip-execute-com 'vip-bol-and-skip-white val com))))