Function: evil-repeat-visual-line
evil-repeat-visual-line is a byte-compiled function defined in
evil-repeat.el.
Signature
(evil-repeat-visual-line NFWDLINES)
Documentation
Restore a character visual selection.
If the selection is in a single line, the restored visual selection covers the same number of characters. If the selection covers several lines, the restored selection covers the same number of lines and the same number of characters in the last line as the original selection.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-repeat.el
(defun evil-repeat-visual-line (nfwdlines)
"Restore a character visual selection.
If the selection is in a single line, the restored visual
selection covers the same number of characters. If the selection
covers several lines, the restored selection covers the same
number of lines and the same number of characters in the last
line as the original selection."
(evil-visual-line)
(forward-line nfwdlines))