Function: markdown-previous-visible-heading

markdown-previous-visible-heading is an interactive and byte-compiled function defined in markdown-mode.el.

Signature

(markdown-previous-visible-heading ARG)

Documentation

Move to the previous visible heading line of any level.

With argument, repeats or can move backward if negative. ARG is passed to outline-previous-visible-heading.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-previous-visible-heading (arg)
  "Move to the previous visible heading line of any level.
With argument, repeats or can move backward if negative. ARG is
passed to `outline-previous-visible-heading'."
  (interactive "p")
  (markdown-move-heading-common #'outline-previous-visible-heading arg 'adjust))