Function: yank-rectangle

yank-rectangle is an autoloaded, interactive and byte-compiled function defined in rect.el.gz.

Signature

(yank-rectangle)

Documentation

Yank the last killed rectangle with upper left corner at point.

View in manual

Probably introduced at or before Emacs version 1.9.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/rect.el.gz
;;;###autoload
(defun yank-rectangle ()
  "Yank the last killed rectangle with upper left corner at point."
  (interactive "*")
  (insert-rectangle killed-rectangle))