Skip to content
Mingde (Matthew) Zeng edited this page Sep 28, 2020 · 3 revisions

English | 简体中文

支持 org-store-link

加载 eaf-org 来启用:

(require 'eaf-org)

当前支持如下应用:

  • web browser 链接支持
  • pdf-viewer 跳转到记录的标记页面
  • js-video-player 跳转到记录的视频时间戳
  • 理论上支持所有EAF应用(只要应用有 eaf--buffer-url 参数值)

用EAF PDF-Viewer打开Org Mode的PDF链接

(defun eaf-org-open-file (file &optional link)
  "An wrapper function on `eaf-open'."
  (eaf-open file))

;; use `emacs-application-framework' to open PDF file: link
(add-to-list 'org-file-apps '("\\.pdf\\'" . eaf-org-open-file))
Clone this wiki locally