Variable: tramp-completion-file-name-handler-alist

tramp-completion-file-name-handler-alist is a variable defined in tramp.el.gz.

Value

((file-name-all-completions . tramp-completion-handle-file-name-all-completions)
 (file-name-completion . tramp-completion-handle-file-name-completion))

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
  '((file-name-all-completions
     . tramp-completion-handle-file-name-all-completions)
    (file-name-completion . tramp-completion-handle-file-name-completion))
  "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.")