From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26940 invoked from network); 20 Sep 2006 11:08:22 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.5 (2006-08-29) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO autolearn=ham version=3.1.5 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 20 Sep 2006 11:08:22 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 41645 invoked from network); 20 Sep 2006 11:08:16 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 20 Sep 2006 11:08:16 -0000 Received: (qmail 7847 invoked by alias); 20 Sep 2006 11:08:04 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 10748 Received: (qmail 7836 invoked from network); 20 Sep 2006 11:08:03 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 20 Sep 2006 11:08:02 -0000 Received: (qmail 39925 invoked from network); 20 Sep 2006 11:08:02 -0000 Received: from cluster-c.mailcontrol.com (168.143.177.190) by a.mx.sunsite.dk with SMTP; 20 Sep 2006 11:07:58 -0000 Received: from cameurexb01.EUROPE.ROOT.PRI ([62.189.241.200]) by rly13c.srv.mailcontrol.com (MailControl) with ESMTP id k8KB3i0b024273 for ; Wed, 20 Sep 2006 12:07:52 +0100 Received: from news01.csr.com ([10.103.143.38]) by cameurexb01.EUROPE.ROOT.PRI with Microsoft SMTPSVC(6.0.3790.1830); Wed, 20 Sep 2006 12:02:58 +0100 Received: from news01.csr.com (localhost.localdomain [127.0.0.1]) by news01.csr.com (8.13.7/8.13.4) with ESMTP id k8KB2xi2011524 for ; Wed, 20 Sep 2006 12:02:59 +0100 Received: from csr.com (pws@localhost) by news01.csr.com (8.13.7/8.13.7/Submit) with ESMTP id k8KB2w3m011521 for ; Wed, 20 Sep 2006 12:02:58 +0100 Message-Id: <200609201102.k8KB2w3m011521@news01.csr.com> X-Authentication-Warning: news01.csr.com: pws owned process doing -bs To: zsh users Subject: Re: error in 19.3.1 In-reply-to: <20060920124814.GA56989@dagan.sigpipe.cz> References: <20060919222852.GA46327@dagan.sigpipe.cz> <200609200926.k8K9QhEF009890@news01.csr.com> <20060920124814.GA56989@dagan.sigpipe.cz> Comments: In-reply-to Roman Neuhauser message dated "Wed, 20 Sep 2006 12:48:14 -0000." Date: Wed, 20 Sep 2006 12:02:58 +0100 From: Peter Stephenson X-OriginalArrivalTime: 20 Sep 2006 11:02:58.0941 (UTC) FILETIME=[553C72D0:01C6DCA4] Content-Type: text/plain MIME-Version: 1.0 X-Scanned-By: MailControl A-07-04-02 (www.mailcontrol.com) on 10.67.0.123 Roman Neuhauser wrote: > > You mean the code should be the other way round? > > Only if the behavior described in the text actually makes sense, > that is, is this setting useful? Here's an example I actually use, plus another comment. Index: Doc/Zsh/compsys.yo =================================================================== RCS file: /cvsroot/zsh/zsh/Doc/Zsh/compsys.yo,v retrieving revision 1.190 diff -u -r1.190 compsys.yo --- Doc/Zsh/compsys.yo 21 Aug 2006 14:24:49 -0000 1.190 +++ Doc/Zsh/compsys.yo 20 Sep 2006 11:02:09 -0000 @@ -589,19 +589,15 @@ the internals of completion functions (see ifzman(see zmanref(zshcompwid))\ ifnzman(noderef(Completion Widgets)))\ -). For example: +). For example, -example(zstyle -e ':completion:*' completer ' - if [[ $words[1] = cvs ]]; then - reply=(_complete) - else - reply=(_complete _approximate) - fi') +example(tt(ztyle -e ':completion:*' hosts 'reply=($myhosts)')) -uses the value `tt(_complete)' for the tt(completer) style in most -contexts, but the value `tt(_complete _approximate)' when the first word -on the command line is `tt(cvs)'. This is probably more conveniently done -by specifying the style for two different contexts. This form can be +This forces the value of the tt(hosts) style to be read from the +variable tt(myhosts) each time a host name is needed; this is useful +if the value of tt(myhosts) can change dynamically. +For another useful example, see the example in the description of the +tt(file-list) style below. This form can be slow and should be avoided for commonly examined styles such as tt(menu) and tt(list-rows-first). @@ -3313,8 +3309,8 @@ an option taking multiple arguments may be given in this form. If the var(pattern) is empty (i.e., tt(:*:)), all the remaining words on the line are to be completed as described by the -var(action); otherwise, all the words up to a word matching the -var(pattern) are to be completed using the var(action). +var(action); otherwise, all the words up to and including a word matching +the var(pattern) are to be completed using the var(action). Multiple colons are treated as for the `tt(*:)var(...)' forms for ordinary arguments: when the var(message) is preceded by two colons, -- Peter Stephenson Software Engineer CSR PLC, Churchill House, Cambridge Business Park, Cowley Road Cambridge, CB4 0WZ, UK Tel: +44 (0)1223 692070 To access the latest news from CSR copy this link into a web browser: http://www.csr.com/email_sig.php