From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19376 invoked from network); 13 May 2004 17:14:27 -0000 Received: from thor.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.86) by ns1.primenet.com.au with SMTP; 13 May 2004 17:14:27 -0000 Received: (qmail 30063 invoked from network); 13 May 2004 17:13:43 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 13 May 2004 17:13:43 -0000 Received: (qmail 7275 invoked by alias); 13 May 2004 17:13:34 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 7452 Received: (qmail 7251 invoked from network); 13 May 2004 17:13:33 -0000 Received: from thor.dotsrc.org (HELO a.mx.sunsite.dk) (qmailr@130.225.247.86) by sunsite.dk with SMTP; 13 May 2004 17:13:30 -0000 Received: (qmail 29009 invoked from network); 13 May 2004 17:13:24 -0000 Received: from mail36.messagelabs.com (193.109.254.211) by a.mx.sunsite.dk with SMTP; 13 May 2004 17:13:19 -0000 X-VirusChecked: Checked X-Env-Sender: okiddle@yahoo.co.uk X-Msg-Ref: server-4.tower-36.messagelabs.com!1084468372!6178912 X-StarScan-Version: 5.2.11; banners=-,-,- X-Originating-IP: [158.234.9.163] Received: (qmail 22218 invoked from network); 13 May 2004 17:12:52 -0000 Received: from iris.logica.co.uk (158.234.9.163) by server-4.tower-36.messagelabs.com with SMTP; 13 May 2004 17:12:52 -0000 Received: from trentino.logica.co.uk ([158.234.142.61]) by iris.logica.co.uk (8.12.3/8.12.3/Debian -4) with ESMTP id i4DHCqOb021362; Thu, 13 May 2004 18:12:52 +0100 Received: from trentino.logica.co.uk (localhost [127.0.0.1]) by trentino.logica.co.uk (Postfix) with ESMTP id 2DF087971610; Thu, 13 May 2004 19:12:08 +0200 (CEST) X-VirusChecked: Checked X-StarScan-Version: 5.0.7; banners=.,-,- In-reply-to: <20040513184806.4ca35ffa.mauricex@gmx.net> From: Oliver Kiddle References: <20040513184806.4ca35ffa.mauricex@gmx.net> To: Maurice Cc: zsh-users@sunsite.dk Subject: Re: tab-completion from wildcard Date: Thu, 13 May 2004 19:12:08 +0200 Message-ID: <21343.1084468328@trentino.logica.co.uk> X-Spam-Checker-Version: SpamAssassin 2.63 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, hits=0.0 required=6.0 tests=BAYES_50 autolearn=no version=2.63 X-Spam-Hits: 0.0 Maurice wrote: > Hi, > > if I press TAB after a '*', it doesn't insert the matching files > immediately. Instead I have to press TAB several times. I hope this > example makes it clear: zstyle ':completion::*:expand:*' tag-order all-expansions > % touch a b c > % echo * If you type Ctrl-X h at that point instead of Tab, it tells you that the things it completes have the tags `all-expansions' `expansions' and `original'. The tag-order style above restricts it to just all-expansions. Oliver