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 /Completion/User/_cvs | |
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.
Diffstat (limited to 'Completion/User/_cvs')
-rw-r--r-- | Completion/User/_cvs | 2 |
1 files changed, 1 insertions, 1 deletions
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 "$@" -/ } } |