From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3368 invoked from network); 13 Apr 2002 20:38:43 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 13 Apr 2002 20:38:43 -0000 Received: (qmail 6808 invoked by alias); 13 Apr 2002 20:38:35 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 16978 Received: (qmail 6797 invoked from network); 13 Apr 2002 20:38:35 -0000 From: Borsenkow Andrej To: Zsh hackers list Subject: _values does not quote inserted matches Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Evolution/1.0.2-5mdk Date: 14 Apr 2002 00:38:19 +0400 Message-Id: <1018730307.16430.1.camel@localhost.localdomain> Mime-Version: 1.0 Using current CVS: {pts/3}% _foo() { function> _values -s , test "a b" "c d" function> } {pts/3}% compdef _foo foo {pts/3}% foo a b, Completing test a b c d note, that match inserted into command line is not quoted that makes it impossible to complete more than one value. -andrej