Function: vi-end-of-blank-delimited-word
vi-end-of-blank-delimited-word is an interactive and byte-compiled
function defined in vi.el.gz.
Signature
(vi-end-of-blank-delimited-word COUNT)
Documentation
Forward to the end of the COUNT'th blank-delimited word.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-end-of-blank-delimited-word (count)
"Forward to the end of the COUNT'th blank-delimited word."
(interactive "p")
(if (re-search-forward "[^ \t\n']+[ \t\n']" nil t count)
(if (not (eobp)) (backward-char 2))))