From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15862 invoked from network); 17 Sep 2003 14:44:54 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 17 Sep 2003 14:44:54 -0000 Received: (qmail 8217 invoked by alias); 17 Sep 2003 14:43:41 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 6595 Received: (qmail 8208 invoked from network); 17 Sep 2003 14:43:41 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 17 Sep 2003 14:43:41 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [4.64.232.255] by sunsite.dk (MessageWall 1.0.8) with SMTP; 17 Sep 2003 14:43:35 -0000 Received: (from schaefer@localhost) by candle.brasslantern.com (8.11.6/8.11.6) id h8HEhIv01456 for zsh-users@sunsite.dk; Wed, 17 Sep 2003 07:43:18 -0700 From: Bart Schaefer Message-Id: <1030917144318.ZM1455@candle.brasslantern.com> Date: Wed, 17 Sep 2003 14:43:18 +0000 In-Reply-To: <18061.1063784444@gmcs3.local> Comments: In reply to Oliver Kiddle "Re: Case-insensitive completion" (Sep 17, 9:40am) References: <20030914103053.GA827@strindberg.student.uu.se> <18061.1063784444@gmcs3.local> X-Mailer: Z-Mail (5.0.0 30July97) To: Zsh-users List Subject: Re: Case-insensitive completion MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Sep 17, 9:40am, Oliver Kiddle wrote: > > Here's another idea on how to do this. It's no better than Bart's Except that yours is not file-completion-specific, which might be better in some circumstances. Just one question: > _cscomplete() { > _complete > return 1 > } Are completers always called with no arguments? Or should that be _cscomplete() { _complete $* return 1 } ??