#compdef listenbrainz-mpd

autoload -U is-at-least

_listenbrainz-mpd() {
    typeset -A opt_args
    typeset -a _arguments_options
    local ret=1

    if is-at-least 5.2; then
        _arguments_options=(-s -S -C)
    else
        _arguments_options=(-s -C)
    fi

    local context curcontext="$curcontext" state line
    _arguments "${_arguments_options[@]}" : \
'-c+[Path to the configuration file]:CONFIG:_files' \
'--config=[Path to the configuration file]:CONFIG:_files' \
'--send-feedback=[Submit feedback for the currently playing song and exit]:FEEDBACK:(hate clear love)' \
'--create-default-config[Create a configuration file in the default location and exit]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
&& ret=0
}

(( $+functions[_listenbrainz-mpd_commands] )) ||
_listenbrainz-mpd_commands() {
    local commands; commands=()
    _describe -t commands 'listenbrainz-mpd commands' commands "$@"
}

if [ "$funcstack[1]" = "_listenbrainz-mpd" ]; then
    _listenbrainz-mpd "$@"
else
    compdef _listenbrainz-mpd listenbrainz-mpd
fi
