aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMichael Albinus2011-04-14 21:04:08 +0200
committerMichael Albinus2011-04-14 21:04:08 +0200
commit9024ff7943e9529ec38a80aaaa0db43224c1e885 (patch)
tree92ede98b79832478ab78e26af2c4fe1a1b91fb4e /doc
parentf42efeb5433369af567d67b304a1aab9e90a7127 (diff)
downloademacs-9024ff7943e9529ec38a80aaaa0db43224c1e885.tar.gz
emacs-9024ff7943e9529ec38a80aaaa0db43224c1e885.zip
* tramp.texi (Frequently Asked Questions): New item for disabling
Tramp in other packages.
Diffstat (limited to 'doc')
-rw-r--r--doc/misc/ChangeLog5
-rw-r--r--doc/misc/tramp.texi35
2 files changed, 36 insertions, 4 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 49c87078ca9..1660ed5335b 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,8 @@
12011-04-14 Michael Albinus <michael.albinus@gmx.de>
2
3 * tramp.texi (Frequently Asked Questions): New item for disabling
4 Tramp in other packages.
5
12011-04-14 Teodor Zlatanov <tzz@lifelogs.com> 62011-04-14 Teodor Zlatanov <tzz@lifelogs.com>
2 7
3 * gnus.texi (nnmairix caveats, Setup, Registry Article Refer Method) 8 * gnus.texi (nnmairix caveats, Setup, Registry Article Refer Method)
diff --git a/doc/misc/tramp.texi b/doc/misc/tramp.texi
index e1c4a806de2..2663d2df0f5 100644
--- a/doc/misc/tramp.texi
+++ b/doc/misc/tramp.texi
@@ -2812,7 +2812,6 @@ When @value{tramp} does not connect to the remote host, there are three
2812reasons heading the bug mailing list: 2812reasons heading the bug mailing list:
2813 2813
2814@itemize @minus 2814@itemize @minus
2815
2816@item 2815@item
2817Unknown characters in the prompt 2816Unknown characters in the prompt
2818 2817
@@ -2882,7 +2881,6 @@ checksum.
2882 (when (file-remote-p default-directory) 2881 (when (file-remote-p default-directory)
2883 (set (make-local-variable 'file-precious-flag) t)))) 2882 (set (make-local-variable 'file-precious-flag) t))))
2884@end lisp 2883@end lisp
2885
2886@end itemize 2884@end itemize
2887 2885
2888 2886
@@ -3377,14 +3375,43 @@ export EDITOR=/path/to/emacsclient.sh
3377 3375
3378 3376
3379@item 3377@item
3380How can I disable @value{tramp}? 3378There are packages which call @value{tramp} although I haven't entered
3379a remote file name ever. I dislike it, how could I disable it?
3381 3380
3382Shame on you, why did you read until now? 3381In general, @value{tramp} functions are used only when
3382you apply remote file name syntax. However, some packages enable
3383@value{tramp} on their own.
3383 3384
3384@itemize @minus 3385@itemize @minus
3386@item
3387@file{ido.el}
3388
3389You could disable @value{tramp} file name completion:
3390
3391@lisp
3392(custom-set-variables
3393 '(ido-enable-tramp-completion nil))
3394@end lisp
3385 3395
3386@item 3396@item
3397@file{rlogin.el}
3398
3399You could disable remote directory tracking mode:
3400
3401@lisp
3402(rlogin-directory-tracking-mode -1)
3403@end lisp
3404@end itemize
3405
3406
3407@item
3408How can I disable @value{tramp} at all?
3409
3410Shame on you, why did you read until now?
3411
3412@itemize @minus
3387@ifset emacs 3413@ifset emacs
3414@item
3388If you just want to have @value{ftppackagename} as default remote 3415If you just want to have @value{ftppackagename} as default remote
3389files access package, you should apply the following code: 3416files access package, you should apply the following code:
3390 3417