about summary refs log tree commit diff
path: root/Completion/Unix/Command/_mpc
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2006-05-25 03:58:35 +0000
committerClint Adams <clint@users.sourceforge.net>2006-05-25 03:58:35 +0000
commit49365f454208853babe348841671339ac9558ad7 (patch)
tree39e0cbf7ea0e79ae6bf94ba6deb0f74a93671a27 /Completion/Unix/Command/_mpc
parent4d9385a969a903e6b6a22e76ef791b24b516eecd (diff)
downloadzsh-49365f454208853babe348841671339ac9558ad7.tar.gz
zsh-49365f454208853babe348841671339ac9558ad7.tar.xz
zsh-49365f454208853babe348841671339ac9558ad7.zip
22456, R. Ramkumar: update for mpc 0.11.2.
Diffstat (limited to 'Completion/Unix/Command/_mpc')
-rw-r--r--Completion/Unix/Command/_mpc22
1 files changed, 22 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_mpc b/Completion/Unix/Command/_mpc
index 02fde75d2..6e44c08ce 100644
--- a/Completion/Unix/Command/_mpc
+++ b/Completion/Unix/Command/_mpc
@@ -26,14 +26,19 @@ _mpc_command() {
 
   mpc_cmds=(
     add:"add a song to the current playlist"
+    crop:"remove all songs except for the currently playing song"
     del:"remove a song from the current playlist"
     play:"start playing"
     next:"play the next song in the current playlist"
     prev:"play the previous song in the current playlist"
     pause:"pause the currently playing song"
+    toggle:"toggles Play/Pause, plays if stopped"
     stop:"stop the currently playing playlists"
     seek:"seek to the position specified in percent"
     clear:"clear the current playlist"
+    outputs:"show the current outputs"
+    enable:"enable a output"
+    disable:"disable a output"
     shuffle:"shuffle the current playlist"
     move:"move song in playlist"
     playlist:"print the current playlist"
@@ -49,7 +54,9 @@ _mpc_command() {
     search:"search for a song"
     crossfade:"set and display crossfade settings"
     update:"scan music directory for updates"
+    stats:"display statistics about MPD"
     version:"report version of MPD"
+    status:"display MPD status"
   )
 
   if (( CURRENT == 1 )); then
@@ -154,6 +161,13 @@ _mpc_helper_directories() {
   fi
 }
 
+(( $+functions[_mpc_helper_outputs] )) ||
+_mpc_helper_outputs() {
+  local vals outline
+  vals=(${${${${(M)${(f)"$(mpc outputs 2> /dev/null)"}:#Output * \(*\) is (en|dis)abled}##Output }%%\) is (en|dis)abled}/ \(/:})
+  _describe -t outputs output vals
+}
+
 _mpc_add() {
   _mpc_helper_files
 }
@@ -170,6 +184,14 @@ _mpc_seek() {
   _message "floating point percent value"
 }
 
+_mpc_enable() {
+  _mpc_helper_outputs
+}
+
+_mpc_disable() {
+  _mpc_helper_outputs
+}
+
 _mpc_move() {
   if (( $#words <= 3 )); then
     _mpc_helper_songnumbers