Function: markdown-ts-outline-cycle

markdown-ts-outline-cycle is an interactive and byte-compiled function defined in markdown-ts-mode.el.gz.

Signature

(markdown-ts-outline-cycle)

Documentation

Cycle visibility of the heading at point.

On a heading, call outline-cycle. Otherwise do nothing.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
;;; Major mode:

(defun markdown-ts-outline-cycle ()
  "Cycle visibility of the heading at point.
On a heading, call `outline-cycle'.  Otherwise do nothing."
  (interactive)
  (when (outline-on-heading-p)
    (outline-cycle)))