Function: evil-first-non-blank-of-visual-line
evil-first-non-blank-of-visual-line is an interactive and
byte-compiled function defined in evil-commands.el.
Signature
(evil-first-non-blank-of-visual-line)
Documentation
Move the cursor to the first non blank character of the current screen line.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-first-non-blank-of-visual-line ()
"Move the cursor to the first non blank character
of the current screen line."
:type exclusive
(evil-beginning-of-visual-line)
(skip-chars-forward " \t\r"))