Function: vip-previous-line-at-bol

vip-previous-line-at-bol is an interactive and byte-compiled function defined in vip.el.gz.

Signature

(vip-previous-line-at-bol ARG)

Documentation

Previous line at beginning of line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/vip.el.gz
(defun vip-previous-line-at-bol (arg)
  "Previous line at beginning of line."
  (interactive "P")
  (let ((val (vip-p-val arg)) (com (vip-getCom arg)))
    (if com (move-marker vip-com-point (point)))
    (with-no-warnings (next-line (- val)))
    (back-to-indentation)
    (if com (vip-execute-com 'vip-previous-line val com))))