1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-13 11:21:13 +02:00

17459: exclude files which have RCS kflags for cvs add.

This commit is contained in:
Clint Adams 2002-07-22 14:41:50 +00:00
parent d73780e874
commit bec76f8979
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2002-07-22 Clint Adams <clint@zsh.org>
* Akira, 17459: Completion/Unix/Command/_cvs: exclude files which have
RCS kflags for cvs add.
2002-07-01 Clint Adams <clint@zsh.org>
* 17391: Completion/Debian/Command/_dpkg: complete files after

View file

@ -963,7 +963,7 @@ _cvs_nonentried_files () {
realdir=${(e)~linedir}
[[ -f "$realdir"CVS/Entries ]] && {
omitpats=(
${${${${(M)${(f)"$(<"$realdir"CVS/Entries)"}:#(D|)/*}#(D|)/}%%/*}//(#m)[][*?()<|^~#\\]/\\$MATCH}
${${${${(M)${${(f)"$(<"$realdir"CVS/Entries)"}:#/*/-*/*/*/*}:#(D|)/*}#(D|)/}%%/*}//(#m)[][*?()<|^~#\\]/\\$MATCH}
$_cvs_ignore_default
${=cvsignore}
)