diff options
Diffstat (limited to '')
-rw-r--r-- | completions/qdbus | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/completions/qdbus b/completions/qdbus new file mode 100644 index 0000000..5b5a5e3 --- /dev/null +++ b/completions/qdbus @@ -0,0 +1,14 @@ +# Qt qdbus, dcop completion -*- shell-script -*- + +_qdbus() +{ + local cur prev words cword + _init_completion || return + + [[ -n $cur ]] && unset "words[$((${#words[@]} - 1))]" + COMPREPLY=($(compgen -W '$(command ${words[@]} 2>/dev/null | \ + command sed "s/(.*)//")' -- "$cur")) +} && + complete -F _qdbus qdbus dcop + +# ex: filetype=sh |