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