Function: evil-previous-visual-line
evil-previous-visual-line is an interactive and byte-compiled function
defined in evil-commands.el.
Signature
(evil-previous-visual-line &optional COUNT)
Documentation
Move the cursor COUNT screen lines up.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-previous-visual-line (count)
"Move the cursor COUNT screen lines up."
:type exclusive
(let ((line-move-visual t))
(evil-line-move (- (or count 1)))))