diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Completion/X/Command/_mplayer | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index a56dfa036..f49d57788 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-02-28 Clint Adams <clint@zsh.org> + + * Daniel Friesel: 26636: Completion/X/Command/_mplayer: complete + .flac files for mplayer. + 2009-02-27 Barton E. Schaefer <schaefer@zsh.org> * 26609: Completion/Unix/Type/_path_files: further / different fix @@ -11266,5 +11271,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.4584 $ +* $Revision: 1.4585 $ ***************************************************** diff --git a/Completion/X/Command/_mplayer b/Completion/X/Command/_mplayer index f8f4ca9e8..d8b3ba4a2 100644 --- a/Completion/X/Command/_mplayer +++ b/Completion/X/Command/_mplayer @@ -115,7 +115,7 @@ case "$state" in _tags files urls while _tags; do _requested files expl 'video file' _files -g \ - "*.(#i)(asf|asx|avi|flv|m1v|m2p|m2v|mjpg|mka|mkv|mov|mp3|mp4|mpe|mpeg|mpg|ogg|ogm|qt|rm|vob|wav|wma|wmv)(-.)" && ret=0 + "*.(#i)(asf|asx|avi|flac|flv|m1v|m2p|m2v|mjpg|mka|mkv|mov|mp3|mp4|mpe|mpeg|mpg|ogg|ogm|qt|rm|vob|wav|wma|wmv)(-.)" && ret=0 if _requested urls; then while _next_label urls expl URL; do _urls "$expl[@]" && ret=0 |