Function: vip-end-of-word
vip-end-of-word is an interactive and byte-compiled function defined
in vip.el.gz.
Signature
(vip-end-of-word ARG)
Documentation
Move point to end of current word.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vip.el.gz
(defun vip-end-of-word (arg)
"Move point to end of current word."
(interactive "P")
(let ((val (vip-p-val arg))
(com (vip-getcom arg)))
(if com (move-marker vip-com-point (point)))
(forward-char)
(forward-word val)
(backward-char)
(if com
(progn
(forward-char)
(vip-execute-com 'vip-end-of-word val com)))))