Variable: tramp-gvfs-methods

tramp-gvfs-methods is a customizable variable defined in tramp-gvfs.el.gz.

Value

("afp" "dav" "davs" "mtp" "sftp")

Documentation

List of methods for remote files, accessed with GVFS.

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

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-gvfs.el.gz
;;;###tramp-autoload
(defcustom tramp-gvfs-methods
  '("afp" "dav" "davs" "gdrive" "mtp" "nextcloud" "sftp")
  "List of methods for remote files, accessed with GVFS."
  :group 'tramp
  :version "28.1"
  :type '(repeat (choice (const "afp")
			 (const "dav")
			 (const "davs")
			 (const "ftp")
			 (const "gdrive")
			 (const "http")
			 (const "https")
			 (const "mtp")
			 (const "nextcloud")
			 (const "sftp")
			 (const "smb")))
  :link '(tramp-info-link :tag "Tramp manual" tramp-gvfs-methods))