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