From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13013 invoked from network); 1 Feb 2001 17:39:56 -0000 Received: from sunsite.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 1 Feb 2001 17:39:56 -0000 Received: (qmail 22551 invoked by alias); 1 Feb 2001 17:39:49 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 13426 Received: (qmail 22540 invoked from network); 1 Feb 2001 17:39:49 -0000 Date: Thu, 1 Feb 2001 09:41:14 -0800 (PST) From: Wayne Davison X-Sender: wayne@phong.blorf.net To: Zsh Workers Subject: Space-expansion problem in dev-8 Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII I just upgraded from dev-7 to dev-8 to try to fix the following problem, but it is still there. If a filename contains spaces (or other escapable characters) and you expand it via wild-carding, the spaces are not escaped. For instance: % zsh -f % touch 'a b c d e' % autoload -U compinit % compinit % zstyle ':completion:*' completer _expand _complete % bindkey '\t' complete-word % ls a* One of the offered suggestions is "a b c d e" rather than "a\ b\ c\ d\ e". If I complete it without the '*' or expand it without changing tab's key binding, it works properly. ..wayne..