zsh-workers
 help / color / mirror / code / Atom feed
From: Peter Stephenson <p.w.stephenson@ntlworld.com>
To: "Zsh Hackers' List" <zsh-workers@zsh.org>
Subject: Re: PATCH: parameter substitution for exclusion by array
Date: Sat, 21 Apr 2012 23:06:05 +0100	[thread overview]
Message-ID: <20120421230605.565f4ad1@pws-pc.ntlworld.com> (raw)
In-Reply-To: <120421144817.ZM10783@torch.brasslantern.com>

On Sat, 21 Apr 2012 14:48:17 -0700
Bart Schaefer <schaefer@brasslantern.com> wrote:
> On Apr 21, 10:05pm, Peter Stephenson wrote:
> }
> } > Index: Completion/Zsh/Command/_typeset
> } >        args=(${^fpath}/*(:t))
> } 
> } I wonder if it would be OK to fix this to
> } 
> }       args=(${^fpath}/*(-.:t))
> }  
> } or is that going to give problems with network paths?
> 
> As we're already globbing in the directory, the only difference between
> *(-.:t) and *(.:t) is for directories that contain a bunch of symlinks;
> any symlink to the directory itself must already have been followed.  So
> I don't think network paths are a huge concern.

The point is there wasn't even a "." there before, so we're going from a
pure readdir() loop (plus a bit of string handling with no implications
for system interaction) to performing a stat() on each file.  What
really triggered my noticing this was we allow completion of
subdirectories of $fpath as autoloadable functions, which is a bit
bizarre.

Hmm... we could make this more efficient with some trickery: remove
functions already marked for autoload first, then regenerate the path to
the remaining (presumably, though not necessarily much smaller) set of
matches first, then only test the types of those.  However, I'm not sure
there's an efficient way of getting from the pruned $args back to the
full paths, or equivalently an efficient way of removing full paths
where only the last component matches a function name... or whether it's
worth even attempting.

-- 
Peter Stephenson <p.w.stephenson@ntlworld.com>
Web page now at http://homepage.ntlworld.com/p.w.stephenson/


  reply	other threads:[~2012-04-21 22:06 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-20 19:20 Peter Stephenson
2012-04-21 21:05 ` Peter Stephenson
2012-04-21 21:48   ` Bart Schaefer
2012-04-21 22:06     ` Peter Stephenson [this message]
2012-04-22 12:55 ` Mikael Magnusson
2012-04-22 18:20   ` Peter Stephenson
2012-04-23 13:54     ` PATCH: NEWS: mention new array operations Mikael Magnusson

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=20120421230605.565f4ad1@pws-pc.ntlworld.com \
    --to=p.w.stephenson@ntlworld.com \
    --cc=zsh-workers@zsh.org \
    /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).