using-emacs icon indicating copy to clipboard operation
using-emacs copied to clipboard

org-pdfview no longer maintained

Open pauljamesharper opened this issue 4 years ago • 0 comments

When installing your emacs.d setup Melpa complained that org-pdfview is not available. Upon investigation I found it was not longer maintained.

https://github.com/markus1189/org-pdfview

There is however a fork: https://github.com/fuxialexander/org-pdftools. I replaced org-pdfview with:

(use-package org-pdftools
  :hook (org-load . org-pdftools-setup-link))

(use-package org-noter-pdftools
  :after org-noter
  :config
  (with-eval-after-load 'pdf-annot
    (add-hook 'pdf-annot-activate-handler-functions #'org-noter-pdftools-jump-to-note)))

pauljamesharper avatar May 11 '20 11:05 pauljamesharper