Guest User

Untitled

a guest
Jan 17th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. '(org-file-apps
  2. (quote
  3. ((auto-mode . emacs)
  4. ("\.mm\'" . default)
  5. ("\.x?html?\'" . "/usr/bin/firefox %s")
  6. ("\.pdf\'" . default))))
  7.  
  8. (setq browse-url-generic-program
  9. (cond
  10. ((eq window-system 'mac) "open") ; mac
  11. ((or (eq system-type 'gnu/linux) (eq system-type 'linux)) ; linux
  12. (executable-find "firefox"))
  13. ))
  14.  
  15. emacs --version
  16. GNU Emacs 25.1.1
  17.  
  18. (setq org-file-apps
  19. (quote
  20. ((auto-mode . emacs)
  21. ("\.mm\'" . default)
  22. ("\.x?html?\'" . "/usr/bin/firefox %s")
  23. ("\.pdf\'" . default))))
Add Comment
Please, Sign In to add comment