Function: cua-refill-rectangle

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

Signature

(cua-refill-rectangle WIDTH)

Documentation

Fill contents of current rectangle.

A numeric prefix argument is used as new width for the filled rectangle.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/cua-rect.el.gz
(defun cua-refill-rectangle (width)
  "Fill contents of current rectangle.
A numeric prefix argument is used as new width for the filled rectangle."
  (interactive "P")
  (cua--rectangle-aux-replace
      (if width (prefix-numeric-value width) 0)
      t t t 1 'cua--left-fill-rectangle))