Function: vip-forward-char
vip-forward-char is an interactive and byte-compiled function defined
in vip.el.gz.
Signature
(vip-forward-char ARG)
Documentation
Move point right ARG characters (left if ARG negative).On reaching end of buffer, stop and signal error.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vip.el.gz
;; basic cursor movement. j, k, l, m commands.
(defun vip-forward-char (arg)
"Move point right ARG characters (left if ARG negative).On reaching end
of buffer, stop and signal error."
(interactive "P")
(let ((val (vip-p-val arg)) (com (vip-getcom arg)))
(if com (move-marker vip-com-point (point)))
(forward-char val)
(if com (vip-execute-com 'vip-forward-char val com))))