From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18307 invoked from network); 29 Mar 2002 02:37:08 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 29 Mar 2002 02:37:08 -0000 Received: (qmail 14990 invoked by alias); 29 Mar 2002 02:36:53 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 4796 Received: (qmail 14978 invoked from network); 29 Mar 2002 02:36:52 -0000 From: "Will Sargent" To: "Brian Agnew" , Subject: RE: Completing directories with special suffix Date: Thu, 28 Mar 2002 18:36:02 -0800 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 In-Reply-To: <20020329005207.61786.qmail@web14606.mail.yahoo.com> > I don't parse out the classpath. Rather I perform the completion > function, and > generate the possible package names (and cache them for later > use). So I can > complete on a classpath setting (including .zips and .jars) > rather than on a > directory basis. Which is what you really want. > > Don't know yet if the zsh 4.x completions handle this. > Unfortunately my current > client is stuck on 3.x at the moment :-( Hopefully I can check > this out next > week. Yeah, that was what I meant. Do you do completion in place, so you can define a classpath and expand out the package in the same line? Something along the lines of java -cp jedit.jar org.gjt.jedit.JEdit would be supercool. Will.