diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 2000-05-16 16:04:04 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-05-16 16:04:04 +0000 |
commit | 26a467f4067fdda2f627e3b6ce76ea2c54e1b464 (patch) | |
tree | 2e3cb0773b4a4987f150bfb828b4ec2653e8fba8 | |
parent | 184ea22946af7632c232e12a6b93b067d7c4c62b (diff) | |
download | zsh-26a467f4067fdda2f627e3b6ce76ea2c54e1b464.tar.gz zsh-26a467f4067fdda2f627e3b6ce76ea2c54e1b464.tar.xz zsh-26a467f4067fdda2f627e3b6ce76ea2c54e1b464.zip |
11415: Completion/User/_cvs: follow the new matcher-list behaviour.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Completion/User/_cvs | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 85d3f8165..c07cec0cd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-05-16 Tanaka Akira <akr@zsh.org> + + * 11415: Completion/User/_cvs: follow the new matcher-list behaviour. + 2000-05-16 Peter Stephenson <pws@cambridgesiliconradio.com> * 11410: Src/glob.c: tokenize `=' in tokenize(), so that `=cmd' diff --git a/Completion/User/_cvs b/Completion/User/_cvs index ee3a779e7..341bbcb54 100644 --- a/Completion/User/_cvs +++ b/Completion/User/_cvs @@ -584,7 +584,7 @@ _cvs_root () { fi _tags files && { - compadd -M 'r:|[:@./]=* r:|=*' "$@" $_cvs_roots || _files "$@" -/ + compadd -M 'r:|[:@./]=** r:|=**' "$@" $_cvs_roots || _files "$@" -/ } } |