Function: vi-redo-last-change-command
vi-redo-last-change-command is an interactive and byte-compiled
function defined in vi.el.gz.
Signature
(vi-redo-last-change-command COUNT &optional COMMAND)
Documentation
Redo last change command COUNT times. If the optional COMMAND is given,
it is used instead of the current last-change-command.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-redo-last-change-command (count &optional command)
"Redo last change command COUNT times. If the optional COMMAND is given,
it is used instead of the current `last-change-command'."
(interactive "p")
(if (null command)
(setq command vi-last-change-command))
(if (null command)
(message "No last change command available.")
(while (> count 0)
(apply (car command) (cdr command))
(setq count (1- count)))))