Function: cua-insert-char-rectangle

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

Signature

(cua-insert-char-rectangle &optional CH)

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/cua-rect.el.gz
;;; Insert/delete text to left or right of rectangle

(defun cua-insert-char-rectangle (&optional ch)
  (interactive)
  (if buffer-read-only
      (ding)
    (cua--indent-rectangle (or ch (aref (this-single-command-keys) 0)))
    (cua--keep-active))
  t)