# bash completion for tinmop                                  -*- shell-script -*-

_tinmop_completions() {
    COMPREPLY=($(COMP_WORDS="${COMP_WORDS[*]}" \
                 COMP_CWORD=$COMP_CWORD \
                 COMP_LINE=$COMP_LINE   \
                 tinmop --bash-complete))
}

complete -F _tinmop_completions tinmop
