Function: cua-resize-rectangle-bol

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

Signature

(cua-resize-rectangle-bol)

Documentation

Resize rectangle to beginning of line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/cua-rect.el.gz
(defun cua-resize-rectangle-bol ()
  "Resize rectangle to beginning of line."
  (interactive)
  (unless (bolp)
    (beginning-of-line)
    (cua--rectangle-left (current-column))
    (if (cua--rectangle-right-side)
        (cua--rectangle-corner -1))
    (cua--rectangle-resized)))