Function: org-cut-special
org-cut-special is an interactive and byte-compiled function defined
in org.el.gz.
Signature
(org-cut-special)
Documentation
Cut region in table or cut current subtree.
Calls org-table-cut-region or org-cut-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-cut-special ()
"Cut region in table or cut current subtree.
Calls `org-table-cut-region' or `org-cut-subtree', depending on
context. See the individual commands for more information."
(interactive)
(call-interactively
(if (org-at-table-p) #'org-table-cut-region #'org-cut-subtree)))