Variable: org-file-apps-macos

org-file-apps-macos is a variable defined in org.el.gz.

Value

((remote . emacs) (system . "open %s") ("ps.gz" . "gv %s")
 ("eps.gz" . "gv %s") ("dvi" . "xdvi %s") ("fig" . "xfig %s")
 (t . "open %s"))

Documentation

Default file applications on a macOS system.

The system "open" is known as a default, but we use X11 applications for some files for which the OS does not have a good default. See org-file-apps.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defconst org-file-apps-macos
  '((remote . emacs)
    (system . "open %s")
    ("ps.gz"  . "gv %s")
    ("eps.gz" . "gv %s")
    ("dvi"    . "xdvi %s")
    ("fig"    . "xfig %s")
    (t . "open %s"))
  "Default file applications on a macOS system.
The system \"open\" is known as a default, but we use X11 applications
for some files for which the OS does not have a good default.
See `org-file-apps'.")