]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve Tramp manual
authorMichael Albinus <michael.albinus@gmx.de>
Thu, 15 Aug 2019 12:35:02 +0000 (14:35 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Thu, 15 Aug 2019 12:35:02 +0000 (14:35 +0200)
* doc/misc/tramp.texi (GVFS based methods): Explain using `ftp'
and `smb' methods.

doc/misc/tramp.texi

index 5d88ac111b3cef330f5139138dc9ca7345b95b2b..d48fa319fb2198c44a7103080a44114658c7f336 100644 (file)
@@ -1266,6 +1266,18 @@ to include are @option{ftp}, @option{http}, @option{https} and
 @option{smb}.  These methods are not intended to be used directly as
 GVFS based method.  Instead, they are added here for the benefit of
 @ref{Archive file names}.
+
+If you want to use GVFS-based @option{ftp} or @option{smb} methods,
+you must add them to @code{tramp-gvfs-methods}, and you must disable
+the corresponding Tramp package by setting @code{tramp-ftp-method} or
+@code{tramp-smb-method} to @code{nil}, respectively:
+
+@lisp
+@group
+(add-to-list 'tramp-gvfs-methods "ftp")
+(customize-set-variable 'tramp-ftp-method nil)
+@end group
+@end lisp
 @end defopt