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/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/share/emacs/31.0.50/lisp/org/org.elc"
	   . 44327)])
 (t
  . #[514 "\300\301\"\207" [w32-shell-execute "open"] 5
	  ("/nix/store/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/share/emacs/31.0.50/lisp/org/org.elc"
	   . 44327)]))

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'.")