From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 872 invoked from network); 26 May 1999 13:03:18 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 26 May 1999 13:03:18 -0000 Received: (qmail 29386 invoked by alias); 26 May 1999 13:02:03 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 6353 Received: (qmail 29348 invoked from network); 26 May 1999 13:01:58 -0000 To: zsh-workers@sunsite.auc.dk Subject: Re: zsh-3.1.5-pws-19 unquotes prefix. References: <199905260643.IAA07549@beta.informatik.hu-berlin.de> MIME-Version: 1.0 (generated by AKEMI 1.13.1 - =?ISO-2022-JP?B?Ig==?= =?ISO-2022-JP?B?GyRCP2U+PUJOGyhCIg==?=) Content-Type: text/plain; charset=US-ASCII From: Tanaka Akira Date: 26 May 1999 22:01:44 +0900 In-Reply-To: Sven Wischnowsky's message of "Wed, 26 May 1999 08:43:08 +0200 (MET DST)" Message-ID: User-Agent: Chao-gnus/6.12.5 AKEMI/1.13.1 (=?ISO-2022-JP?B?GyRCP2UbKEI=?= =?ISO-2022-JP?B?GyRCPj1CThsoQg==?=) FLAM-DOODLE/1.12.5 (=?ISO-2022-JP?B?GyRCRlAbKEI=?= 10R4.0/7.0) Emacs/20.3.9 (sparc-sun-solaris2.6) MULE/4.0 (HANANOEN) In article <199905260643.IAA07549@beta.informatik.hu-berlin.de>, Sven Wischnowsky writes: > That was one problem. The other was that with old completion and > `compctl -P '\*' -k '(a b)' foo', completion after `ls \*' didn't > work at all. > > Again, completion and quoting, sigh. Thanks. But I found another problem with \*. is27e1u11% fpath=($PWD/Completion/*(/)) is27e1u11% . Completion/Core/compinit is27e1u11% _tst () { compadd -P '\*' a } is27e1u11% _comps[tst]=_tst is27e1u11% tst \* Then, I get no completion. If _tst is defined as following, I get "tst \*a " correctly. _tst () { compgen -P '\*' -k '(a)' } -- Tanaka Akira