aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2019-08-15 14:35:02 +0200
committerMichael Albinus2019-08-15 14:35:02 +0200
commit975f78ae2172d844043e9d1c83fedfdaa8f7c35e (patch)
tree1ce5d0949625b9a861aa80fcbe52f1c8c039f35f
parent3548fd8a53869ce6b42c47f690660cb8eddb8aab (diff)
downloademacs-975f78ae2172d844043e9d1c83fedfdaa8f7c35e.tar.gz
emacs-975f78ae2172d844043e9d1c83fedfdaa8f7c35e.zip
Improve Tramp manual
* doc/misc/tramp.texi (GVFS based methods): Explain using `ftp' and `smb' methods.
-rw-r--r--doc/misc/tramp.texi12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index 5d88ac111b3..d48fa319fb2 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -1266,6 +1266,18 @@ to include are @option{ftp}, @option{http}, @option{https} and
1266@option{smb}. These methods are not intended to be used directly as 1266@option{smb}. These methods are not intended to be used directly as
1267GVFS based method. Instead, they are added here for the benefit of 1267GVFS based method. Instead, they are added here for the benefit of
1268@ref{Archive file names}. 1268@ref{Archive file names}.
1269
1270If you want to use GVFS-based @option{ftp} or @option{smb} methods,
1271you must add them to @code{tramp-gvfs-methods}, and you must disable
1272the corresponding Tramp package by setting @code{tramp-ftp-method} or
1273@code{tramp-smb-method} to @code{nil}, respectively:
1274
1275@lisp
1276@group
1277(add-to-list 'tramp-gvfs-methods "ftp")
1278(customize-set-variable 'tramp-ftp-method nil)
1279@end group
1280@end lisp
1269@end defopt 1281@end defopt
1270 1282
1271 1283