Function: markdown-outline-next-same-level

markdown-outline-next-same-level is an interactive and byte-compiled function defined in markdown-mode.el.

Signature

(markdown-outline-next-same-level)

Documentation

Move to next 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-next-same-level ()
  "Move to next list item or heading of same level."
  (interactive)
  (let ((bounds (markdown-cur-list-item-bounds)))
    (if bounds
        (markdown-next-list-item (nth 3 bounds))
      (markdown-forward-same-level 1))))