lang/org: fix opening file links

This commit is contained in:
Henrik Lissner 2018-02-03 06:10:32 -05:00
parent 3bfb7fa17d
commit 7e21d66bf7
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -257,7 +257,10 @@ between the two."
;; Let OS decide what to do with files when opened
(setq org-file-apps
`(("\\.org$" . emacs)
`(("pdf" . default)
("\\.x?html?\\'" . default)
(auto-mode . emacs)
(directory . emacs)
(t . ,(cond (IS-MAC "open -R \"%s\"")
(IS-LINUX "xdg-open \"%s\"")))))