using-emacs
using-emacs copied to clipboard
org-pdfview no longer maintained
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)))