Function: evil-visual-goto-end

evil-visual-goto-end is a byte-compiled function defined in evil-states.el.

Signature

(evil-visual-goto-end)

Documentation

Go to the last line of the Visual selection.

This position may differ from evil-visual-end depending on the selection type, and is contained in the selection.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-states.el
(defun evil-visual-goto-end ()
  "Go to the last line of the Visual selection.
This position may differ from `evil-visual-end' depending on
the selection type, and is contained in the selection."
  (let ((range (evil-contract-range (evil-visual-range))))
    (goto-char (evil-range-end range))))