Variable: tramp-connection-properties

tramp-connection-properties is a customizable variable defined in tramp-cache.el.gz.

Value

nil

Documentation

List of static connection properties.

Every entry has the form (REGEXP PROPERTY VALUE). The regexp matches remote file names. It can be nil. PROPERTY is a string, and VALUE the corresponding value. They are used, if there is no matching entry for PROPERTY in tramp-cache-data.

PROPERTY can also be a string representing a parameter in tramp-methods. For more details see the Info node (tramp) Predefined connection information.

This variable was added, or its default value changed, in Emacs 24.4.

Probably introduced at or before Emacs version 25.1.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-cache.el.gz
(defcustom tramp-connection-properties nil
  "List of static connection properties.
Every entry has the form (REGEXP PROPERTY VALUE).  The regexp
matches remote file names.  It can be nil.  PROPERTY is a string,
and VALUE the corresponding value.  They are used, if there is no
matching entry for PROPERTY in `tramp-cache-data'.

PROPERTY can also be a string representing a parameter in
`tramp-methods'.  For more details see the Info node `(tramp) Predefined
connection information'."
  :group 'tramp
  :version "24.4"
  :type '(repeat (list (choice :tag "File Name regexp" regexp (const nil))
		       (choice :tag "        Property" string)
		       (choice :tag "           Value" sexp)))
  :link '(info-link :tag "Tramp manual"
		    "(tramp) Predefined connection information"))