Function: org-copy-special

org-copy-special is an interactive and byte-compiled function defined in org.el.gz.

Signature

(org-copy-special)

Documentation

Copy region in table or copy current subtree.

Calls org-table-copy-region or org-copy-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-copy-special ()
  "Copy region in table or copy current subtree.
Calls `org-table-copy-region' or `org-copy-subtree', depending on
context.  See the individual commands for more information."
  (interactive)
  (call-interactively
   (if (org-at-table-p) #'org-table-copy-region #'org-copy-subtree)))