Function: vi-forward-word
vi-forward-word is an interactive and byte-compiled function defined
in vi.el.gz.
Signature
(vi-forward-word COUNT)
Documentation
Stop at the beginning of the COUNT'th words from point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-forward-word (count)
"Stop at the beginning of the COUNT'th words from point."
(interactive "p")
(if (re-search-forward "\\w*\\W+\\<" nil t count)
t
(vi-ding)))