#compdef uu-unexpand

autoload -U is-at-least

_uu-unexpand() {
    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[@]}" \
'-t+[]' \
'--tabs=[]' \
'-a[convert all blanks, instead of just initial blanks]' \
'--all[convert all blanks, instead of just initial blanks]' \
'--first-only[convert only leading sequences of blanks (overrides -a)]' \
'-U[interpret input file as 8-bit ASCII rather than UTF-8]' \
'--no-utf8[interpret input file as 8-bit ASCII rather than UTF-8]' \
'-h[Prints help information]' \
'--help[Prints help information]' \
'-V[Prints version information]' \
'--version[Prints version information]' \
'::file:_files' \
&& ret=0
    
}

(( $+functions[_uu-unexpand_commands] )) ||
_uu-unexpand_commands() {
    local commands; commands=(
        
    )
    _describe -t commands 'uu-unexpand commands' commands "$@"
}

_uu-unexpand "$@"