Function: cua-scroll-rectangle-down
cua-scroll-rectangle-down is an interactive and byte-compiled function
defined in cua-rect.el.gz.
Signature
(cua-scroll-rectangle-down)
Documentation
Insert a blank line at the first line of the rectangle.
The remaining lines are scrolled down, losing the last line.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/cua-rect.el.gz
(defun cua-scroll-rectangle-down ()
"Insert a blank line at the first line of the rectangle.
The remaining lines are scrolled down, losing the last line."
(interactive)
(cua--rectangle-aux-replace 0 t t t t
(lambda (s _e)
(goto-char s)
(insert "\n"))))