Variable: connection-local-criteria-alist
connection-local-criteria-alist is a variable defined in
files-x.el.gz.
Value
(((:application tramp :protocol "adb")
tramp-adb-connection-local-default-shell-profile)
((:application tramp)
tramp-connection-local-default-system-profile tramp-connection-local-default-shell-profile))
Documentation
Alist mapping connection criteria to connection profiles.
Each element in this list has the form (CRITERIA PROFILES).
CRITERIA is a plist identifying a connection and the application
using this connection. Property names might be :application,
:protocol, :user and :machine. The property value of
:application is a symbol, all other property values are
strings. All properties are optional; if CRITERIA is nil, it
always applies.
PROFILES is a list of connection profiles (symbols).
Source Code
;; Defined in /usr/src/emacs/lisp/files-x.el.gz
(defvar connection-local-criteria-alist nil
"Alist mapping connection criteria to connection profiles.
Each element in this list has the form (CRITERIA PROFILES).
CRITERIA is a plist identifying a connection and the application
using this connection. Property names might be `:application',
`:protocol', `:user' and `:machine'. The property value of
`:application' is a symbol, all other property values are
strings. All properties are optional; if CRITERIA is nil, it
always applies.
PROFILES is a list of connection profiles (symbols).")