Function: markdown-end-of-list
markdown-end-of-list is an interactive and byte-compiled function
defined in markdown-mode.el.
Signature
(markdown-end-of-list)
Documentation
Move point to end of list at point, if any.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-end-of-list ()
"Move point to end of list at point, if any."
(interactive)
(let ((start (point))
(end (save-excursion
(when (markdown-beginning-of-list)
;; Items can't have nonlist-indent <= 1, so this
;; moves past all list items.
(markdown-next-list-item 1)
(skip-syntax-backward "-")
(unless (eobp) (forward-char 1))
(point)))))
(when (and end (>= end start))
(goto-char end))))