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