Function: cua-indent-rectangle

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

Signature

(cua-indent-rectangle COLUMN)

Documentation

Indent rectangle to next tab stop.

With prefix arg, indent to that column.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/cua-rect.el.gz
(defun cua-indent-rectangle (column)
  "Indent rectangle to next tab stop.
With prefix arg, indent to that column."
  (interactive "P")
  (if (null column)
      (cua-insert-char-rectangle ?\t)
    (cua--indent-rectangle nil (prefix-numeric-value column))))