diff options
author | Clint Adams <clint@users.sourceforge.net> | 2005-11-06 04:24:07 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2005-11-06 04:24:07 +0000 |
commit | efe48cacd4465a48cf667734d6f6757dde8a3814 (patch) | |
tree | 23ade351c428078b8bf71a9f03ce91095d84f40a | |
parent | 870d3f39b3d6767d8a1e989cd884e149313222a9 (diff) | |
download | zsh-efe48cacd4465a48cf667734d6f6757dde8a3814.tar.gz zsh-efe48cacd4465a48cf667734d6f6757dde8a3814.tar.xz zsh-efe48cacd4465a48cf667734d6f6757dde8a3814.zip |
21987: completion for cplay.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_cplay | 8 |
2 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index a4ea7ee7a..26dbce7fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-11-05 Clint Adams <clint@zsh.org> + + * 21987: Completion/Unix/Command/_cplay: completion for + cplay. + 2005-11-04 Peter Stephenson <pws@csr.com> * users/9618 modified as suggested in users/9621: Doc/Zsh/expn.yo, diff --git a/Completion/Unix/Command/_cplay b/Completion/Unix/Command/_cplay new file mode 100644 index 000000000..24b159425 --- /dev/null +++ b/Completion/Unix/Command/_cplay @@ -0,0 +1,8 @@ +#compdef cplay + +_arguments -s \ + '-n[enable restricted mode]' \ + '-r[toggle playlist repeat mode]' \ + '-R[toggle playlist random mode]' \ + '-v[toggle PCM and MASTER volume control]' \ + '*:playlist or directory or audio file:_files' |