Function: markdown-forward-same-level

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

Signature

(markdown-forward-same-level ARG)

Documentation

Move forward to the ARG'th heading at same level as this one.

Stop at the first and last headings of a superior heading.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-forward-same-level (arg)
  "Move forward to the ARG'th heading at same level as this one.
Stop at the first and last headings of a superior heading."
  (interactive "p")
  (markdown-back-to-heading-over-code-block)
  (markdown-move-heading-common #'outline-forward-same-level arg 'adjust))