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
("/nix/store/y8rifw71hjgsl2qjn1l0vrwq2c3593aw-emacs-30-2/share/emacs/30.2/lisp/org/org.elc"
. 45067)])
(t
. #[514 "\300\301\"\207" [w32-shell-execute "open"] 5
("/nix/store/y8rifw71hjgsl2qjn1l0vrwq2c3593aw-emacs-30-2/share/emacs/30.2/lisp/org/org.elc"
. 45067)]))
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'.")