Function: vip-append
vip-append is an interactive and byte-compiled function defined in
vip.el.gz.
Signature
(vip-append ARG)
Documentation
Append after point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vip.el.gz
(defun vip-append (arg)
"Append after point."
(interactive "P")
(let ((val (vip-p-val arg)) (com (vip-getcom arg)))
(setq vip-d-com (list 'vip-append val ?r))
(if (not (eolp)) (forward-char))
(if (equal com ?r)
(vip-loop val (yank))
(vip-change-mode-to-insert))))