Function: markdown-move-down
markdown-move-down is an interactive and byte-compiled function
defined in markdown-mode.el.
Signature
(markdown-move-down)
Documentation
Move thing at point down.
When in a list item, call markdown-move-list-item-down.
Otherwise, move the current heading subtree up with
markdown-move-subtree-down.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-move-down ()
"Move thing at point down.
When in a list item, call `markdown-move-list-item-down'.
Otherwise, move the current heading subtree up with
`markdown-move-subtree-down'."
(interactive)
(cond
((markdown-list-item-at-point-p)
(call-interactively #'markdown-move-list-item-down))
((markdown-table-at-point-p)
(call-interactively #'markdown-table-move-row-down))
(t
(call-interactively #'markdown-move-subtree-down))))