Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

completion in braces



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