Function: cua-resize-rectangle-top

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

Signature

(cua-resize-rectangle-top)

Documentation

Resize rectangle to top of buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/cua-rect.el.gz
(defun cua-resize-rectangle-top ()
  "Resize rectangle to top of buffer."
  (interactive)
  (goto-char (point-min))
  (move-to-column (cua--rectangle-column))
  (cua--rectangle-top t)
  (cua--rectangle-resized))