Variable: org-file-apps-windowsnt
org-file-apps-windowsnt is a variable defined in org.el.gz.
Value
((remote . emacs)
(system .
#[514 "\300\301\"\207"
[w32-shell-execute "open"]
5 "\n\n(fn FILE PATH)"])
(t .
#[514 "\300\301\"\207"
[w32-shell-execute "open"]
5 "\n\n(fn FILE PATH)"]))
Documentation
Default file applications on a Windows NT system.
The system "open" is used for most files.
See org-file-apps.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defconst org-file-apps-windowsnt
(list '(remote . emacs)
(cons 'system (lambda (file _path)
(with-no-warnings (w32-shell-execute "open" file))))
(cons t (lambda (file _path)
(with-no-warnings (w32-shell-execute "open" file)))))
"Default file applications on a Windows NT system.
The system \"open\" is used for most files.
See `org-file-apps'.")