Function: org-paste-special
org-paste-special is an interactive and byte-compiled function defined
in org.el.gz.
Signature
(org-paste-special ARG)
Documentation
Paste rectangular region into table, or past subtree relative to level.
Calls org-table-paste-rectangle or org-paste-subtree, depending on context.
See the individual commands for more information.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-paste-special (arg)
"Paste rectangular region into table, or past subtree relative to level.
Calls `org-table-paste-rectangle' or `org-paste-subtree', depending on context.
See the individual commands for more information."
(interactive "P")
(if (org-at-table-p)
(org-table-paste-rectangle)
(org-paste-subtree arg)))