Function: cua-fill-char-rectangle
cua-fill-char-rectangle is an interactive and byte-compiled function
defined in cua-rect.el.gz.
Signature
(cua-fill-char-rectangle CHARACTER)
Documentation
Replace CUA rectangle contents with CHARACTER.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/cua-rect.el.gz
(defun cua-fill-char-rectangle (character)
"Replace CUA rectangle contents with CHARACTER."
(interactive "cFill rectangle with character: ")
(cua--rectangle-operation 'clear nil t 1 nil
(lambda (s e l r)
(delete-region s e)
(move-to-column l t)
(insert-char character (- r l)))))