diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Completion/Unix/Command/_mpc | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index d8af3200b..8bd262f0a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-10-24 Clint Adams <clint@zsh.org> + + * 27314: Completion/Unix/Command/_mpc: update list of mpc + search types. + 2009-10-22 Peter Stephenson <pws@csr.com> * Functions/Zle/history-beginning-search-menu: unposted: @@ -12268,5 +12273,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.4795 $ +* $Revision: 1.4796 $ ***************************************************** diff --git a/Completion/Unix/Command/_mpc b/Completion/Unix/Command/_mpc index 152996458..6f12be75f 100644 --- a/Completion/Unix/Command/_mpc +++ b/Completion/Unix/Command/_mpc @@ -236,7 +236,7 @@ _mpc_random() { _mpc_search() { local list expl - list=(album artist title filename) + list=(album artist title track name genre date composer performer comment disc filename any) if [[ $#words -eq 2 ]]; then _wanted list expl table compadd $expl -a list |