Function: evil-apply-on-rectangle
evil-apply-on-rectangle is a byte-compiled function defined in
evil-common.el.
Signature
(evil-apply-on-rectangle FUNCTION START END &rest ARGS)
Documentation
Like apply-on-rectangle but maybe extends to eol.
If temporary-goal-column is set to a big number, then the
region of each line is extended to the end of each line. The end
column is set to the maximal column in all covered lines.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-apply-on-rectangle (function start end &rest args)
"Like `apply-on-rectangle' but maybe extends to eol.
If `temporary-goal-column' is set to a big number, then the
region of each line is extended to the end of each line. The end
column is set to the maximal column in all covered lines."
(apply #'evil-apply-on-block function start end t args))