split xmms completion

This commit is contained in:
Guillaume Rousse 2009-05-17 22:08:47 +02:00
parent 49940913e8
commit ce78770724
2 changed files with 25 additions and 23 deletions

View File

@ -6687,29 +6687,6 @@ _aspell()
complete -F _aspell $filenames aspell complete -F _aspell $filenames aspell
} }
# xmms(1) completion
#
have xmms &&
_xmms()
{
local cur
COMPREPLY=()
cur=`_get_cword`
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-h --help -r --rew -p --play \
-u --pause -s --stop -t --play-pause -f --fwd -e \
--enqueue -m --show-main-window -i --sm-client-id \
-v --version' -- $cur ) )
else
_filedir '@(mp[23]|MP[23]|ogg|OGG|wav|WAV|pls|m3u|xm|mod|s[3t]m|it|mtm|ult|flac)'
fi
} &&
complete -F _xmms $filenames xmms
# info(1) completion # info(1) completion
# #
have info && have info &&

25
contrib/xmms Normal file
View File

@ -0,0 +1,25 @@
# -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*-
# ex: ts=8 sw=8 noet filetype=sh
#
# bash completion for xmms
have xmms &&
_xmms()
{
local cur
COMPREPLY=()
cur=`_get_cword`
if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-h --help -r --rew -p --play \
-u --pause -s --stop -t --play-pause -f --fwd -e \
--enqueue -m --show-main-window -i --sm-client-id \
-v --version' -- $cur ) )
else
_filedir '@(mp[23]|MP[23]|ogg|OGG|wav|WAV|pls|m3u|xm|mod|s[3t]m|it|mtm|ult|flac)'
fi
} &&
complete -F _xmms $filenames xmms