Variable: org-link-preview--queue

org-link-preview--queue is a buffer-local variable defined in ol.el.gz.

Documentation

Queue of pending previews for Org links in buffer.

Each element of this queue is a list of the form

(PREVIEW-FUNC OVERLAY PATH LINK)

where PREVIEW-FUNC places a preview of PATH using OVERLAY. LINK is the Org element being previewed.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ol.el.gz
(defvar-local org-link-preview--queue nil
  "Queue of pending previews for Org links in buffer.

Each element of this queue is a list of the form

(PREVIEW-FUNC OVERLAY PATH LINK)

where PREVIEW-FUNC places a preview of PATH using OVERLAY.  LINK
is the Org element being previewed.")