Function: org-cut-subtree

org-cut-subtree is an interactive and byte-compiled function defined in org.el.gz.

Signature

(org-cut-subtree &optional N)

Documentation

Cut the current subtree into the clipboard.

With prefix arg N, cut this many sequential subtrees. This is a short-hand for marking the subtree and then cutting it.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-cut-subtree (&optional n)
  "Cut the current subtree into the clipboard.
With prefix arg N, cut this many sequential subtrees.
This is a short-hand for marking the subtree and then cutting it."
  (interactive "p")
  (org-copy-subtree n 'cut))