diff options
author | Clint Adams <clint@users.sourceforge.net> | 2006-08-15 05:04:58 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2006-08-15 05:04:58 +0000 |
commit | 45de69686bb3e0d079107af12845f9f6f1bead28 (patch) | |
tree | ef7ec1d1f0d9d504afd44948c5fabda6870baf41 | |
parent | b7d9ff9d3bf71b0f087071895df047946132c784 (diff) | |
download | zsh-45de69686bb3e0d079107af12845f9f6f1bead28.tar.gz zsh-45de69686bb3e0d079107af12845f9f6f1bead28.tar.xz zsh-45de69686bb3e0d079107af12845f9f6f1bead28.zip |
22609: complete for baz switch
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_baz | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 269e32943..974c1c42f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-08-15 Clint Adams <clint@zsh.org> + + * 22609: Completion/Unix/Command/_baz: complete for + switch subcommand. + 2006-08-14 Peter Stephenson <pws@csr.com> * 22608: Doc/Zsh/contrib.yo: improvments on 22606. diff --git a/Completion/Unix/Command/_baz b/Completion/Unix/Command/_baz index 5fbec44b2..5015456fb 100644 --- a/Completion/Unix/Command/_baz +++ b/Completion/Unix/Command/_baz @@ -450,6 +450,9 @@ cmd_rm=('*:file:_files') local cmd_escape cmd_escape=(':string:') +local cmd_switch +cmd_switch=(':revision:_baz_revisions') + #mutually exclusive options local -A excludes |