Your message dated Thu, 1 Jan 2009 18:05:57 +0100
with message-id <[email protected]>
and subject line bug triage
has caused the Debian Bug report #256789,
regarding zsh file name completion should quote commas in brace construct
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
256789: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=256789
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: zsh
Version: 4.2.0-14
Tab completion normally quotes spaces and the like. In a {a,b}
construct, commas also need to be escaped. Example:
% touch a1,2
% touch a3,4
% ls a{1<TAB>3<TAB>}
results in:
% ls a{1,2,3,4}
ls: a1: No such file or directory
ls: a2: No such file or directory
ls: a3: No such file or directory
ls: a4: No such file or directory
It should produce:
% ls a{1\,2,3\,4}
Galen
--- End Message ---
--- Begin Message ---
Version: 4.3.6-7
Commas are escaped properly, now.
--- End Message ---