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

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

Value

Large value
((abbreviate-file-name . tramp-handle-abbreviate-file-name)
 (access-file . tramp-handle-access-file)
 (add-name-to-file . tramp-sh-handle-add-name-to-file)
 (copy-directory . tramp-sh-handle-copy-directory)
 (copy-file . tramp-sh-handle-copy-file)
 (delete-directory . tramp-sh-handle-delete-directory)
 (delete-file . tramp-sh-handle-delete-file)
 (directory-file-name . tramp-handle-directory-file-name)
 (directory-files . tramp-handle-directory-files)
 (directory-files-and-attributes
  . tramp-sh-handle-directory-files-and-attributes)
 (dired-compress-file . tramp-sh-handle-dired-compress-file)
 (dired-uncache . tramp-handle-dired-uncache)
 (exec-path . tramp-sh-handle-exec-path)
 (expand-file-name . tramp-sh-handle-expand-file-name)
 (file-accessible-directory-p
  . tramp-handle-file-accessible-directory-p)
 (file-acl . tramp-sh-handle-file-acl)
 (file-attributes . tramp-sh-handle-file-attributes)
 (file-directory-p . tramp-sh-handle-file-directory-p)
 (file-equal-p . tramp-handle-file-equal-p)
 (file-executable-p . tramp-sh-handle-file-executable-p)
 (file-exists-p . tramp-sh-handle-file-exists-p)
 (file-group-gid . tramp-handle-file-group-gid)
 (file-in-directory-p . tramp-handle-file-in-directory-p)
 (file-local-copy . tramp-sh-handle-file-local-copy)
 (file-locked-p . tramp-handle-file-locked-p)
 (file-modes . tramp-handle-file-modes)
 (file-name-all-completions
  . tramp-sh-handle-file-name-all-completions)
 (file-name-as-directory . tramp-handle-file-name-as-directory)
 (file-name-case-insensitive-p
  . tramp-handle-file-name-case-insensitive-p)
 (file-name-completion . tramp-handle-file-name-completion)
 (file-name-directory . tramp-handle-file-name-directory)
 (file-name-nondirectory . tramp-handle-file-name-nondirectory)
 (file-newer-than-file-p . tramp-handle-file-newer-than-file-p)
 (file-notify-add-watch . tramp-sh-handle-file-notify-add-watch)
 (file-notify-rm-watch . tramp-handle-file-notify-rm-watch)
 (file-notify-valid-p . tramp-handle-file-notify-valid-p)
 (file-ownership-preserved-p
  . tramp-sh-handle-file-ownership-preserved-p)
 (file-readable-p . tramp-sh-handle-file-readable-p)
 (file-regular-p . tramp-handle-file-regular-p)
 (file-remote-p . tramp-handle-file-remote-p)
 (file-selinux-context . tramp-sh-handle-file-selinux-context)
 (file-symlink-p . tramp-handle-file-symlink-p)
 (file-system-info . tramp-sh-handle-file-system-info)
 (file-truename . tramp-sh-handle-file-truename)
 (file-user-uid . tramp-handle-file-user-uid)
 (file-writable-p . tramp-sh-handle-file-writable-p)
 (find-backup-file-name . tramp-handle-find-backup-file-name)
 (insert-directory . tramp-sh-handle-insert-directory)
 (insert-file-contents . tramp-handle-insert-file-contents)
 (list-system-processes . tramp-handle-list-system-processes)
 (load . tramp-handle-load) (lock-file . tramp-handle-lock-file)
 (make-auto-save-file-name . tramp-handle-make-auto-save-file-name)
 (make-directory . tramp-sh-handle-make-directory)
 (make-lock-file-name . tramp-handle-make-lock-file-name)
 (make-nearby-temp-file . tramp-handle-make-nearby-temp-file)
 (make-process . tramp-sh-handle-make-process)
 (make-symbolic-link . tramp-sh-handle-make-symbolic-link)
 (memory-info . tramp-handle-memory-info)
 (process-attributes . tramp-handle-process-attributes)
 (process-file . tramp-sh-handle-process-file)
 (rename-file . tramp-sh-handle-rename-file)
 (set-file-acl . tramp-sh-handle-set-file-acl)
 (set-file-modes . tramp-sh-handle-set-file-modes)
 (set-file-selinux-context . tramp-sh-handle-set-file-selinux-context)
 (set-file-times . tramp-sh-handle-set-file-times)
 (set-visited-file-modtime . tramp-sh-handle-set-visited-file-modtime)
 (shell-command . tramp-handle-shell-command)
 (start-file-process . tramp-handle-start-file-process)
 (substitute-in-file-name . tramp-handle-substitute-in-file-name)
 (temporary-file-directory . tramp-handle-temporary-file-directory)
 (tramp-get-home-directory . tramp-sh-handle-get-home-directory)
 (tramp-get-remote-gid . tramp-sh-handle-get-remote-gid)
 (tramp-get-remote-groups . tramp-sh-handle-get-remote-groups)
 (tramp-get-remote-uid . tramp-sh-handle-get-remote-uid)
 (tramp-set-file-uid-gid . tramp-sh-handle-set-file-uid-gid)
 (unhandled-file-name-directory . ignore)
 (unlock-file . tramp-handle-unlock-file)
 (vc-registered . tramp-sh-handle-vc-registered)
 (verify-visited-file-modtime
  . tramp-sh-handle-verify-visited-file-modtime)
 (write-region . tramp-sh-handle-write-region))

Documentation

Alist of handler functions.

Operations not mentioned here will be handled by the normal Emacs functions.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-sh.el.gz
;; New handlers should be added here.
;;;###tramp-autoload
(defconst tramp-sh-file-name-handler-alist
  '((abbreviate-file-name . tramp-handle-abbreviate-file-name)
    (access-file . tramp-handle-access-file)
    (add-name-to-file . tramp-sh-handle-add-name-to-file)
    ;; `byte-compiler-base-file-name' performed by default handler.
    (copy-directory . tramp-sh-handle-copy-directory)
    (copy-file . tramp-sh-handle-copy-file)
    (delete-directory . tramp-sh-handle-delete-directory)
    (delete-file . tramp-sh-handle-delete-file)
    ;; `diff-latest-backup-file' performed by default handler.
    (directory-file-name . tramp-handle-directory-file-name)
    (directory-files . tramp-handle-directory-files)
    (directory-files-and-attributes
     . tramp-sh-handle-directory-files-and-attributes)
    ;; Starting with Emacs 29.1, `dired-compress-file' performed by
    ;; default handler.
    (dired-compress-file . tramp-sh-handle-dired-compress-file)
    (dired-uncache . tramp-handle-dired-uncache)
    (exec-path . tramp-sh-handle-exec-path)
    (expand-file-name . tramp-sh-handle-expand-file-name)
    (file-accessible-directory-p . tramp-handle-file-accessible-directory-p)
    (file-acl . tramp-sh-handle-file-acl)
    (file-attributes . tramp-sh-handle-file-attributes)
    (file-directory-p . tramp-sh-handle-file-directory-p)
    (file-equal-p . tramp-handle-file-equal-p)
    (file-executable-p . tramp-sh-handle-file-executable-p)
    (file-exists-p . tramp-sh-handle-file-exists-p)
    (file-group-gid . tramp-handle-file-group-gid)
    (file-in-directory-p . tramp-handle-file-in-directory-p)
    (file-local-copy . tramp-sh-handle-file-local-copy)
    (file-locked-p . tramp-handle-file-locked-p)
    (file-modes . tramp-handle-file-modes)
    (file-name-all-completions . tramp-sh-handle-file-name-all-completions)
    (file-name-as-directory . tramp-handle-file-name-as-directory)
    (file-name-case-insensitive-p . tramp-handle-file-name-case-insensitive-p)
    (file-name-completion . tramp-handle-file-name-completion)
    (file-name-directory . tramp-handle-file-name-directory)
    (file-name-nondirectory . tramp-handle-file-name-nondirectory)
    ;; `file-name-sans-versions' performed by default handler.
    (file-newer-than-file-p . tramp-handle-file-newer-than-file-p)
    (file-notify-add-watch . tramp-sh-handle-file-notify-add-watch)
    (file-notify-rm-watch . tramp-handle-file-notify-rm-watch)
    (file-notify-valid-p . tramp-handle-file-notify-valid-p)
    (file-ownership-preserved-p . tramp-sh-handle-file-ownership-preserved-p)
    (file-readable-p . tramp-sh-handle-file-readable-p)
    (file-regular-p . tramp-handle-file-regular-p)
    (file-remote-p . tramp-handle-file-remote-p)
    (file-selinux-context . tramp-sh-handle-file-selinux-context)
    (file-symlink-p . tramp-handle-file-symlink-p)
    (file-system-info . tramp-sh-handle-file-system-info)
    (file-truename . tramp-sh-handle-file-truename)
    (file-user-uid . tramp-handle-file-user-uid)
    (file-writable-p . tramp-sh-handle-file-writable-p)
    (find-backup-file-name . tramp-handle-find-backup-file-name)
    ;; `get-file-buffer' performed by default handler.
    (insert-directory . tramp-sh-handle-insert-directory)
    (insert-file-contents . tramp-handle-insert-file-contents)
    (list-system-processes . tramp-handle-list-system-processes)
    (load . tramp-handle-load)
    (lock-file . tramp-handle-lock-file)
    (make-auto-save-file-name . tramp-handle-make-auto-save-file-name)
    (make-directory . tramp-sh-handle-make-directory)
    ;; `make-directory-internal' performed by default handler.
    (make-lock-file-name . tramp-handle-make-lock-file-name)
    (make-nearby-temp-file . tramp-handle-make-nearby-temp-file)
    (make-process . tramp-sh-handle-make-process)
    (make-symbolic-link . tramp-sh-handle-make-symbolic-link)
    (memory-info . tramp-handle-memory-info)
    (process-attributes . tramp-handle-process-attributes)
    (process-file . tramp-sh-handle-process-file)
    (rename-file . tramp-sh-handle-rename-file)
    (set-file-acl . tramp-sh-handle-set-file-acl)
    (set-file-modes . tramp-sh-handle-set-file-modes)
    (set-file-selinux-context . tramp-sh-handle-set-file-selinux-context)
    (set-file-times . tramp-sh-handle-set-file-times)
    (set-visited-file-modtime . tramp-sh-handle-set-visited-file-modtime)
    (shell-command . tramp-handle-shell-command)
    (start-file-process . tramp-handle-start-file-process)
    (substitute-in-file-name . tramp-handle-substitute-in-file-name)
    (temporary-file-directory . tramp-handle-temporary-file-directory)
    (tramp-get-home-directory . tramp-sh-handle-get-home-directory)
    (tramp-get-remote-gid . tramp-sh-handle-get-remote-gid)
    (tramp-get-remote-groups . tramp-sh-handle-get-remote-groups)
    (tramp-get-remote-uid . tramp-sh-handle-get-remote-uid)
    (tramp-set-file-uid-gid . tramp-sh-handle-set-file-uid-gid)
    (unhandled-file-name-directory . ignore)
    (unlock-file . tramp-handle-unlock-file)
    (vc-registered . tramp-sh-handle-vc-registered)
    (verify-visited-file-modtime . tramp-sh-handle-verify-visited-file-modtime)
    (write-region . tramp-sh-handle-write-region))
  "Alist of handler functions.
Operations not mentioned here will be handled by the normal Emacs functions.")