Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Expanding "foo\ *"
- X-seq: zsh-workers 13594
- From: Wayne Davison <wayned@xxxxxxxxxxxxxxxxxxxxx>
- To: Zsh Workers <zsh-workers@xxxxxxxxxxxxxx>
- Subject: Expanding "foo\ *"
- Date: Sat, 10 Mar 2001 19:48:23 -0800 (PST)
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
Here's a bug with the new completion system (I'm using 4.0.1-pre2,
but the bug predates this version):
% zsh -f
% autoload -U compinit
% compinit
% zstyle ':completion:*' completer _expand _complete
% touch 'foo bar' 'foo baz'
% bindkey '\t' complete-word
% ls -l foo\ *<TAB>
(Error beep)
% ls -l foo\ ba*<TAB>
(Error beep)
% ls -l foo*<TAB>
(Expands)
So, it seems that the escaped space interferes with the expansion.
..wayne..
Messages sorted by:
Reverse Date,
Date,
Thread,
Author