Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
completion in braces
- X-seq: zsh-workers 17791
- From: Danek Duvall <duvall@xxxxxxxxxxx>
- To: Zsh Workers <zsh-workers@xxxxxxxxxxxxxx>
- Subject: completion in braces
- Date: Mon, 7 Oct 2002 21:58:36 -0700
- Mail-followup-to: Danek Duvall <duvall@xxxxxxxxxxx>, Zsh Workers <zsh-workers@xxxxxxxxxxxxxx>
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
Completion inside braces of filenames containing commas leaves the
filenames improperly escaped:
% ls
a,a a,b a,c b,a b,b b,c
% ls -l $PWD/{ Hit tab =>
% ls -l $PWD/{a,a Type comma/tab/tab =>
% ls -l $PWD/{a,a,a,b
And so forth. That should probably look like
% ls -l $PWD/{a\,a Type comma/tab/tab =>
% ls -l $PWD/{a\,a,a\,b
Is that possible?
I'm seeing this on 4.0.3 and 4.0.5, and I can reproduce it with a plain
zsh -f, followed by "autoload -U compinit; compinit -i".
Thanks,
Danek
Messages sorted by:
Reverse Date,
Date,
Thread,
Author