#compdef dircolors

autoload -U is-at-least

_dircolors() {
    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[@]}" : \
'-b[dircolors-help-bourne-shell]' \
'--sh[dircolors-help-bourne-shell]' \
'--bourne-shell[dircolors-help-bourne-shell]' \
'-c[dircolors-help-c-shell]' \
'--csh[dircolors-help-c-shell]' \
'--c-shell[dircolors-help-c-shell]' \
'-p[dircolors-help-print-database]' \
'--print-database[dircolors-help-print-database]' \
'--print-ls-colors[dircolors-help-print-ls-colors]' \
'-h[Print help]' \
'--help[Print help]' \
'-V[Print version]' \
'--version[Print version]' \
'::FILE:_files' \
&& ret=0
}

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

if [ "$funcstack[1]" = "_dircolors" ]; then
    _dircolors "$@"
else
    compdef _dircolors dircolors
fi
