Function: evil-next-line-1-first-non-blank

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

Signature

(evil-next-line-1-first-non-blank &optional COUNT)

Documentation

Move the cursor COUNT-1 lines down 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-next-line-1-first-non-blank (count)
  "Move the cursor COUNT-1 lines down on the first non-blank character."
  :type line
  (let ((this-command this-command))
    (evil-next-line (1- (or count 1))))
  (evil-first-non-blank))