Function: org-attach-preview-file

org-attach-preview-file is a byte-compiled function defined in org-attach.el.gz.

Signature

(org-attach-preview-file OV PATH LINK)

Documentation

Preview attachment with PATH in overlay OV.

LINK is the Org link element being previewed.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-attach.el.gz
(defun org-attach-preview-file (ov path link)
  "Preview attachment with PATH in overlay OV.

LINK is the Org link element being previewed."
  (org-with-point-at (org-element-begin link)
    (org-link-preview-file
     ov (org-attach-expand path) link)))