From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22166 invoked from network); 23 Jan 2003 10:40:38 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 23 Jan 2003 10:40:38 -0000 Received: (qmail 11570 invoked by alias); 23 Jan 2003 10:40:16 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 5807 Received: (qmail 11559 invoked from network); 23 Jan 2003 10:40:16 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 23 Jan 2003 10:40:15 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [192.35.17.14] by sunsite.dk (MessageWall 1.0.8) with SMTP; 23 Jan 2003 10:40:15 -0000 Received: from mail3.siemens.de (mail3.siemens.de [139.25.208.14]) by david.siemens.de (8.11.6/8.11.6) with ESMTP id h0NAeHY24875; Thu, 23 Jan 2003 11:40:17 +0100 (MET) Received: from MOWD019A.mow.siemens.ru ([163.242.196.119]) by mail3.siemens.de (8.11.6/8.11.6) with ESMTP id h0NAeDq17052; Thu, 23 Jan 2003 11:40:17 +0100 (MET) Received: by mowd019a.mow.siemens.ru with Internet Mail Service (5.5.2653.19) id ; Thu, 23 Jan 2003 13:40:59 +0300 Received: from mw2b210c (163.242.193.12 [163.242.193.12]) by MOWD019A.mow.siemens.ru with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id DPAFMNHY; Thu, 23 Jan 2003 13:40:56 +0300 From: Borzenkov Andrey To: john@io.com, zsh-users@sunsite.dk Subject: RE: Prompt themes Date: Thu, 23 Jan 2003 13:40:04 +0300 Message-ID: <6134254DE87BD411908B00A0C99B044F03A0B5FA@mowd019a.mow.siemens.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.4510 In-Reply-To: <20030123101945.GB8774@io.com> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 > Going through all those directories reminded me of another zsh feature > I used to have that for some reason stopped working at some point. I > used to be able to do something like: > > % cd /u/s/z/4/f/M > > ...and wind up with... > > % cd /usr/share/zsh/4.0.6/functions/Misc > > ...but not any more. I've been fishing around the manpages and Google > for "zsh complete multiple directories" and "zsh complete directory > tree" and "zsh complete pathname" with no success. I assume the change > happened when I went from compctl to zstyle...does anybody know the > appropriate incantation to get this back? You mean it ever worked with compctl?!? The simplest thing is to do autoload -U compinstall; compinstall and it will guide you through setting up new completion system. To activate it, it is autoload -U compinit; compinit but there are a lot of options you can tweak ... -andrey