Function: markdown-ts-move-subtree-down

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

Signature

(markdown-ts-move-subtree-down)

Documentation

Move the current section or list item down past the next sibling.

Key Bindings

Source Code

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