Function: viper-global-execute
viper-global-execute is a byte-compiled function defined in
viper-macs.el.gz.
Signature
(viper-global-execute)
Documentation
Call last keyboard macro for each line in the region.
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/viper-macs.el.gz
(defun viper-global-execute ()
"Call last keyboard macro for each line in the region."
(if (> (point) (mark t)) (exchange-point-and-mark))
(beginning-of-line)
(call-last-kbd-macro)
(while (< (point) (mark t))
(forward-line 1)
(beginning-of-line)
(call-last-kbd-macro)))