Function: markdown-outline-previous

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

Signature

(markdown-outline-previous)

Documentation

Move to previous list item, when in a list, or previous visible heading.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-outline-previous ()
  "Move to previous list item, when in a list, or previous visible heading."
  (interactive)
  (let ((bounds (markdown-prev-list-item-bounds)))
    (if bounds
        (goto-char (nth 0 bounds))
      (markdown-previous-visible-heading 1))))