Function: viper-Insert
viper-Insert is an interactive and byte-compiled function defined in
viper-cmd.el.gz.
Signature
(viper-Insert ARG)
Documentation
Insert before first non-white.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/viper-cmd.el.gz
(defun viper-Insert (arg)
"Insert before first non-white."
(interactive "P")
(viper-set-complex-command-for-undo)
(let ((val (viper-p-val arg))
;;(com (viper-getcom arg))
)
(viper-set-destructive-command (list 'viper-Insert val ?r nil nil nil))
(back-to-indentation)
(if (eq viper-intermediate-command 'viper-repeat)
(viper-loop val (viper-yank-last-insertion))
(viper-change-state-to-insert))))