#compdef fold

autoload -U is-at-least

_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:_default' \
'--width=[set WIDTH as the maximum line width rather than 80]:WIDTH:_default' \
'-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[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
'::file:_files' \
&& ret=0
}

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

if [ "$funcstack[1]" = "_fold" ]; then
    _fold "$@"
else
    compdef _fold fold
fi
