Function: markdown-ts--outline-view-change

markdown-ts--outline-view-change is a byte-compiled function defined in markdown-ts-mode.el.gz.

Signature

(markdown-ts--outline-view-change)

Documentation

Update image overlays after outline fold/unfold.

Removes image overlays in folded regions and triggers refontification so that images in unfolded regions are recreated.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defun markdown-ts--outline-view-change ()
  "Update image overlays after outline fold/unfold.
Removes image overlays in folded regions and triggers
refontification so that images in unfolded regions are recreated."
  (when markdown-ts-inline-images
    (markdown-ts--remove-image-overlays)
    (font-lock-flush)))