Variable: tramp-smb-connection-local-default-system-variables

tramp-smb-connection-local-default-system-variables is a variable defined in tramp-smb.el.gz.

Value

((path-separator . ";") (null-device . "NUL")
 (exec-suffixes ".com" ".exe" ".bat" ".cmd" ".vbs" ".vbe" ".js" ".jse"
		".wsf" ".wsh" ".msc" ".py" ""))

Documentation

Default connection-local system variables for remote smb connections.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-smb.el.gz
;;; Default connection-local variables for Tramp.

(defconst tramp-smb-connection-local-default-system-variables
  '((path-separator . ";")
    (null-device . "NUL")
    ;; This the default value of %PATHEXT% in MS Windows 11, plus ".py"
    ;; for Python.  Once we have remote processes, we might set this
    ;; host-specific using that remote environment variable.
    ;; The suffix "" is added for the benefit of local processes,
    ;; started in a remote buffer.  (Bug#78886)
    (exec-suffixes
     . (".com" ".exe" ".bat" ".cmd" ".vbs" ".vbe"
        ".js" ".jse" ".wsf" ".wsh" ".msc" ".py" "")))
  "Default connection-local system variables for remote smb connections.")