#compdef uu-fold

autoload -U is-at-least

_uu-fold() {
    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[@]}" \
'-w+[set WIDTH as the maximum line width rather than 80]' \
'--width=[set WIDTH as the maximum line width rather than 80]' \
'-b[count using bytes rather than columns (meaning control characters such as newline are not treated specially)]' \
'--bytes[count using bytes rather than columns (meaning control characters such as newline are not treated specially)]' \
'-s[break lines at word boundaries rather than a hard cut-off]' \
'--spaces[break lines at word boundaries rather than a hard cut-off]' \
'-h[Prints help information]' \
'--help[Prints help information]' \
'-V[Prints version information]' \
'--version[Prints version information]' \
'::file:_files' \
&& ret=0
    
}

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

_uu-fold "$@"