From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5612 invoked from network); 15 Dec 1998 14:47:35 -0000 Received: from math.gatech.edu (list@130.207.146.50) by ns1.primenet.com.au with SMTP; 15 Dec 1998 14:47:35 -0000 Received: (from list@localhost) by math.gatech.edu (8.9.1/8.9.1) id JAA08917; Tue, 15 Dec 1998 09:46:30 -0500 (EST) Resent-Date: Tue, 15 Dec 1998 09:46:30 -0500 (EST) Sender: B.Stephens@isode.com To: zsh-workers@math.gatech.edu Subject: Re: Latest patched development version References: <199812151159.MAA10986@beta.informatik.hu-berlin.de> Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Bruce Stephens Date: 15 Dec 1998 14:44:55 +0000 In-Reply-To: Bruce Stephens's message of "15 Dec 1998 14:03:40 +0000" Message-ID: X-Mailer: Gnus v5.6.27/XEmacs 20.4 - "Emerald" Resent-Message-ID: <"sD27q1.0.GB2.6PdTs"@math> Resent-From: zsh-workers@math.gatech.edu X-Mailing-List: archive/latest/4803 X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu Bruce Stephens writes: > Completion seems to have vanished, but I just tried with zsh -f, and > it works again, so that's presumably just something that's changed > in the compctl syntax that's not being reported as an error. I've found it. It was this example completion: # This is to complete all directories under /home, even those that are not # yet mounted (if you use the automounter). # This is for NIS+ (e.g. Solaris 2.x) compctl -Tx 's[/home/] C[0,^/home/*/*]' -S '/' -s '$(niscat auto_home.org_dir | \ awk '\''/export\/[a-zA-Z]*$/ {print $NF}'\'' FS=/)' Which doesn't work for me anyway (since directories are mounted differently), so I've just commented it out. Things were working with previous versions of zsh, however, so this suggests that something has changed.