diff options
| author | Michael Albinus | 2011-04-14 21:04:08 +0200 |
|---|---|---|
| committer | Michael Albinus | 2011-04-14 21:04:08 +0200 |
| commit | 9024ff7943e9529ec38a80aaaa0db43224c1e885 (patch) | |
| tree | 92ede98b79832478ab78e26af2c4fe1a1b91fb4e /doc | |
| parent | f42efeb5433369af567d67b304a1aab9e90a7127 (diff) | |
| download | emacs-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/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/misc/tramp.texi | 35 |
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 @@ | |||
| 1 | 2011-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 | |||
| 1 | 2011-04-14 Teodor Zlatanov <tzz@lifelogs.com> | 6 | 2011-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 | |||
| 2812 | reasons heading the bug mailing list: | 2812 | reasons heading the bug mailing list: |
| 2813 | 2813 | ||
| 2814 | @itemize @minus | 2814 | @itemize @minus |
| 2815 | |||
| 2816 | @item | 2815 | @item |
| 2817 | Unknown characters in the prompt | 2816 | Unknown 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 |
| 3380 | How can I disable @value{tramp}? | 3378 | There are packages which call @value{tramp} although I haven't entered |
| 3379 | a remote file name ever. I dislike it, how could I disable it? | ||
| 3381 | 3380 | ||
| 3382 | Shame on you, why did you read until now? | 3381 | In general, @value{tramp} functions are used only when |
| 3382 | you 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 | |||
| 3389 | You 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 | |||
| 3399 | You 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 | ||
| 3408 | How can I disable @value{tramp} at all? | ||
| 3409 | |||
| 3410 | Shame on you, why did you read until now? | ||
| 3411 | |||
| 3412 | @itemize @minus | ||
| 3387 | @ifset emacs | 3413 | @ifset emacs |
| 3414 | @item | ||
| 3388 | If you just want to have @value{ftppackagename} as default remote | 3415 | If you just want to have @value{ftppackagename} as default remote |
| 3389 | files access package, you should apply the following code: | 3416 | files access package, you should apply the following code: |
| 3390 | 3417 | ||