Function: vcursor-end-of-line
vcursor-end-of-line is an interactive and byte-compiled function
defined in vcursor.el.gz.
Signature
(vcursor-end-of-line ARG)
Documentation
Move the virtual cursor to end of its current line.
ARG is as for end-of-line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vcursor.el.gz
(defun vcursor-end-of-line (arg)
"Move the virtual cursor to end of its current line.
ARG is as for `end-of-line'."
(interactive "P")
(vcursor-relative-move #'end-of-line
(if arg (prefix-numeric-value arg)))
)