Variable: tramp-completion-file-name-handler-alist
tramp-completion-file-name-handler-alist is a variable defined in
tramp.el.gz.
Value
((expand-file-name . tramp-completion-handle-expand-file-name)
(file-exists-p . tramp-completion-handle-file-exists-p)
(file-name-all-completions . tramp-completion-handle-file-name-all-completions)
(file-name-completion . tramp-completion-handle-file-name-completion)
(file-name-directory . tramp-completion-handle-file-name-directory)
(file-name-nondirectory . tramp-completion-handle-file-name-nondirectory))
Documentation
Alist of completion handler functions.
Used for file names matching tramp-completion-file-name-regexp.
Operations not mentioned here will be handled by Tramp's file
name handler functions, or the normal Emacs functions.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp.el.gz
(defconst tramp-completion-file-name-handler-alist
'((expand-file-name . tramp-completion-handle-expand-file-name)
(file-exists-p . tramp-completion-handle-file-exists-p)
(file-name-all-completions
. tramp-completion-handle-file-name-all-completions)
(file-name-completion . tramp-completion-handle-file-name-completion)
(file-name-directory . tramp-completion-handle-file-name-directory)
(file-name-nondirectory . tramp-completion-handle-file-name-nondirectory))
"Alist of completion handler functions.
Used for file names matching `tramp-completion-file-name-regexp'.
Operations not mentioned here will be handled by Tramp's file
name handler functions, or the normal Emacs functions.")