From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20204 invoked from network); 6 Jan 2000 23:38:42 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 6 Jan 2000 23:38:42 -0000 Received: (qmail 21064 invoked by alias); 6 Jan 2000 23:38:31 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 9259 Received: (qmail 21057 invoked from network); 6 Jan 2000 23:38:30 -0000 To: zsh-workers@sunsite.auc.dk Subject: Re: completion with prefix which contains meta character. References: <200001061503.QAA19187@beta.informatik.hu-berlin.de> MIME-Version: 1.0 (generated by AKEMI 1.13.2 - =?ISO-2022-JP?B?Ig==?= =?ISO-2022-JP?B?GyRCQTA0Y0s8GyhCIg==?=) Content-Type: text/plain; charset=US-ASCII From: Tanaka Akira Date: 07 Jan 2000 08:38:28 +0900 In-Reply-To: Sven Wischnowsky's message of "Thu, 6 Jan 2000 16:03:15 +0100 (MET)" Message-ID: User-Agent: Chao-gnus/6.12.5 AKEMI/1.13.2 (=?ISO-2022-JP?B?GyRCQTAbKEI=?= =?ISO-2022-JP?B?GyRCNGNLPBsoQg==?=) FLAM-DOODLE/1.12.6 (=?ISO-2022-JP?B?GyRCM3cbKEI=?= 10R4.0/5.0) Emacs/20.4 (sparc-sun-solaris2.6) MULE/4.0 (HANANOEN) In article <200001061503.QAA19187@beta.informatik.hu-berlin.de>, Sven Wischnowsky writes: > Yup. Since $PREFIX contains the quoted form, compset should use it, too. Now, `echo =' completes nothing. Z:akr@is27e1u11% Src/zsh -f is27e1u11% bindkey -e; autoload -U compinit; compinit -D is27e1u11% echo = This completes nothing. set -x on latest zsh says: is27e1u11% echo = ... +_main_complete:41> compset -P 1 \= +_main_complete:42> compstate[context]=equal ... set -x on 3.1.6-dev-14 says: is27e1u11% echo = ... +_main_complete:41> compset -P 1 \= +_main_complete:43> [[ = != */* && = == ~ ]] ... Replacing the compset pattern \= with = works well, but they should have same bahaviour, I think. -- Tanaka Akira