Function: markdown-ts-move-subtree-up

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

Signature

(markdown-ts-move-subtree-up)

Documentation

Move the current section or list item up past the previous sibling.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defun markdown-ts-move-subtree-up ()
  "Move the current section or list item up past the previous sibling."
  (interactive)
  (if (markdown-ts--list-item-at-point)
      (markdown-ts--list-move t)
    (markdown-ts--move-subtree-up-or-down t)))