Function: evil-previous-line-first-non-blank

evil-previous-line-first-non-blank is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-previous-line-first-non-blank &optional COUNT)

Documentation

Move the cursor COUNT lines up on the first non-blank character.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-previous-line-first-non-blank (count)
  "Move the cursor COUNT lines up on the first non-blank character."
  :type line
  (let ((this-command this-command))
    (evil-previous-line (or count 1)))
  (evil-first-non-blank))