zsh-workers
 help / color / mirror / code / Atom feed
From: Greg Klanderman <gak@klanderman.net>
To: zsh-workers@sunsite.dk
Subject: Re: file completion of ~user/... stats wrong directory
Date: Thu, 10 Sep 2009 11:07:25 -0400	[thread overview]
Message-ID: <m3bplin8ia.fsf@klanderman.net> (raw)
In-Reply-To: <m3my54ohzj.fsf@klanderman.net> (Greg Klanderman's message of "Wed, 09 Sep 2009 00:32:48 -0400")

>>>>> On September 9, 2009 Greg Klanderman <gak@klanderman.net> wrote:

> Looks like this is being caused by the 'accept-exact-dirs' logic in
> _path_files:

Attached below is the one line fix.

greg

Index: Completion/Unix/Type/_path_files
===================================================================
RCS file: /cvsroot/zsh/zsh/Completion/Unix/Type/_path_files,v
retrieving revision 1.47
diff -u -r1.47 _path_files
--- Completion/Unix/Type/_path_files	5 Aug 2009 00:46:45 -0000	1.47
+++ Completion/Unix/Type/_path_files	10 Sep 2009 15:04:23 -0000
@@ -355,7 +355,7 @@
     tmp1=$match[1]
     tpre=$match[2]
     while true; do
-      if [[ -d $donepath$tmp1 ]]; then
+      if [[ -d $prepath$realpath$donepath$tmp1 ]]; then
 	donepath=$donepath$tmp1/
 	pre=$tpre
 	break


  reply	other threads:[~2009-09-10 15:08 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-09 17:53 Greg Klanderman
2009-07-10  9:07 ` Peter Stephenson
2009-07-10 14:06   ` Greg Klanderman
2009-07-10 14:21     ` Peter Stephenson
2009-09-09  4:32       ` Greg Klanderman
2009-09-10 15:07         ` Greg Klanderman [this message]
2009-09-10 15:47           ` Bart Schaefer
2009-09-10 15:56             ` Greg Klanderman
2009-09-13 16:52               ` Greg Klanderman
2009-09-15  0:41                 ` Greg Klanderman

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=m3bplin8ia.fsf@klanderman.net \
    --to=gak@klanderman.net \
    --cc=zsh-workers@sunsite.dk \
    /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 public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).