Function: vcursor-forward-char
vcursor-forward-char is an interactive and byte-compiled function
defined in vcursor.el.gz.
Signature
(vcursor-forward-char ARG)
Documentation
Move the virtual cursor forward ARG characters.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vcursor.el.gz
(defun vcursor-forward-char (arg)
"Move the virtual cursor forward ARG characters."
(interactive "p")
(vcursor-relative-move #'forward-char arg)
)