Emacs: org-mode pdf reader from tool-pdf

master
Pierre Neidhardt 2014-03-10 11:26:28 +01:00
parent fd5c7caac7
commit 1316e67783
1 changed files with 4 additions and 3 deletions

View File

@ -9,13 +9,14 @@
;; Set PDF association in Org-mode (was Evince by default).
(eval-after-load "org"
'(progn
(require 'tool-pdf)
;; Change .pdf association directly within the alist
(setcdr (assoc "\\.pdf\\'" org-file-apps) "zathura --fork %s")))
(setcdr (assoc "\\.pdf\\'" org-file-apps)
(concat pdf-viewer " " (mapconcat 'identity pdf-viewer-args " ")))))
(add-hook
'org-mode-hook
(lambda ()
(auto-fill-mode -1)
))
(auto-fill-mode -1)))
(provide 'mode-org)