Function: markdown-outline-previous-same-level
markdown-outline-previous-same-level is an interactive and
byte-compiled function defined in markdown-mode.el.
Signature
(markdown-outline-previous-same-level)
Documentation
Move to previous list item or heading of same level.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-outline-previous-same-level ()
"Move to previous list item or heading of same level."
(interactive)
(let ((bounds (markdown-cur-list-item-bounds)))
(if bounds
(markdown-prev-list-item (nth 3 bounds))
(markdown-backward-same-level 1))))