Function: org-move-subtree-up

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

Signature

(org-move-subtree-up &optional ARG)

Documentation

Move the current subtree up past ARG headlines of the same level.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
;;; Vertical tree motion, cutting and pasting of subtrees

(defun org-move-subtree-up (&optional arg)
  "Move the current subtree up past ARG headlines of the same level."
  (interactive "p")
  (org-move-subtree-down (- (prefix-numeric-value arg))))