2008-11-25 12:10:55 +01:00

18 lines
348 B
Plaintext

# Qt qdbus completion
#
have qdbus &&
_qdbus()
{
local cur compstr
COMPREPLY=()
cur=`_get_cword`
if [ -z "$cur" ]; then
compstr=${COMP_WORDS[*]}
else
compstr=$( command echo ${COMP_WORDS[*]} | sed "s/ ${cur/\//\\/}$//" )
fi
COMPREPLY=( $( compgen -W '$( command $compstr | sed s/\(.*\)// )' -- "$cur" ) )
} &&
complete -F _qdbus qdbus