all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@iro.umontreal.ca>
To: Michael Albinus <michael.albinus@gmx.de>
Cc: 9793@debbugs.gnu.org, Thierry Volpiatto <thierry.volpiatto@gmail.com>
Subject: bug#9793: 24.0.90; Unwanted tramp connection on eshell completion.
Date: Mon, 24 Oct 2011 10:20:36 -0400	[thread overview]
Message-ID: <jwvobx64jvk.fsf-monnier+emacs@gnu.org> (raw)
In-Reply-To: <87y5wamva0.fsf@gmx.de> (Michael Albinus's message of "Mon, 24 Oct 2011 14:25:11 +0200")

>> This looks like a workaround rather than a fix.  Also, I notice that in
>> `shell' (rather than `eshell') the problem does not occur.  So I'd like
>> to better understand what's going on.
> In shell just the local file names are taken for completion.  I don't
> know how this is implemented, maybe via pcompletion tables?

Both use pretty much the same pcomplete code.

I think I finally figured out what is the difference between the two
cases:  if you set pcomplete-file-ignore and pcomplete-dir-ignore
in shell-mode like it is set in eshell, the same problem shows up.

So what happens is:
- in eshell-mode
  - file-name-all-completions returns '("tic:" "tequila:" "tmp/")
  - completion-file-name-table then checks the predicate (which combines
    file-directory-p with regexp matching to avoid CVS and a few other
    directories).
  - this calls (file-directory-p "tequila:") in the "/" dir, which
    triggers Tramp.
- in shell-mode
  - file-name-all-completions returns '("tic:" "tequila:" "tmp/")
  - completion-file-name-table then checks the predicate (file-directory-p)
  - file-directory-p is *not* called because completion-file-name-table
    handles it specially (just checks the presence of a terminating "/").

I still don't understand why in eshell, tramp-maybe-open-connection is
called within the following backtrace:
  tramp-completion-file-name-handler(file-directory-p "/tequila:")
  file-directory-p("tequila:")
whereas when I manually call
  (let ((default-directory "/")) (file-directory-p "tequila:"))
tramp-maybe-open-connection is called within the following backtrace:
  tramp-completion-file-name-handler(expand-file-name "tequila:" "/")
  file-directory-p("tequila:")
  
> In eshell, all file names are good for completion, also remote
> ones. This is valid, because "cd /sudo::" is a valid command in
> eshell.

In shell-mode completion also understands Tramp file names (yup, that's
a bug, we should probably default comint-file-name-prefix to "/:/"), so
that's not the problem.

> But this makes the trouble with the completion predicate
> `file-directory-p'.

Yup, I think we should somehow make it so Tramp can say
(file-directory-p "/tequila:") => t
without trying to connect to tequila (after all, even if we can't
connect to tequila, this is still a "directory", just one we currently
can't access).


        Stefan





  reply	other threads:[~2011-10-24 14:20 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-19  4:53 bug#9793: 24.0.90; Unwanted tramp connection on eshell completion Thierry Volpiatto
2011-10-20  2:31 ` Stefan Monnier
2011-10-20 18:46   ` Thierry Volpiatto
2011-10-20 20:43     ` Stefan Monnier
2011-10-20 21:17       ` Thierry Volpiatto
2011-10-22  9:39       ` Michael Albinus
2011-10-22 10:39         ` Thierry Volpiatto
2011-10-23 17:47         ` Stefan Monnier
2011-10-24 12:25           ` Michael Albinus
2011-10-24 14:20             ` Stefan Monnier [this message]
2011-10-25 10:41               ` Michael Albinus
2011-10-25 12:16                 ` Stefan Monnier
2011-10-25 12:56                   ` Michael Albinus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=jwvobx64jvk.fsf-monnier+emacs@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --cc=9793@debbugs.gnu.org \
    --cc=michael.albinus@gmx.de \
    --cc=thierry.volpiatto@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.