From 7d80dc1073456fdc49012c5dd94c6c470fcf1cf5 Mon Sep 17 00:00:00 2001 From: Gerard Vermeulen Date: Wed, 16 Feb 2022 07:46:40 +0100 Subject: [PATCH] Fix typo --- README.org | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.org b/README.org index 236353f..576f5ed 100644 --- a/README.org +++ b/README.org @@ -1451,12 +1451,11 @@ this document to =html= and LaTeX correctly. (defun org-pdfview-store-link () "Store a \"pdfview\" type link." (when (eq major-mode 'pdf-view-mode) - ;; This buffer is in pdf-view-mode (let* ((path buffer-file-name) (page (pdf-view-current-page)) (link (concat "pdfview:" path "::" (number-to-string page)))) (org-link-store-props - :type "pdftools" + :type "pdfview" :link link :description path))))) #+end_src