Function: cua-scroll-rectangle-up

cua-scroll-rectangle-up is an interactive and byte-compiled function defined in cua-rect.el.gz.

Signature

(cua-scroll-rectangle-up)

Documentation

Remove the first line of the rectangle and scroll remaining lines up.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/cua-rect.el.gz
(defun cua-scroll-rectangle-up ()
  "Remove the first line of the rectangle and scroll remaining lines up."
  (interactive)
  (cua--rectangle-aux-replace 0 t t t t
    (lambda (s _e)
       (if (= (forward-line 1) 0)
           (delete-region s (point))))))