shitbox/pkg/usr/share/zsh/site-functions/_dirname

33 lines
691 B
Plaintext

#compdef dirname
autoload -U is-at-least
_dirname() {
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[@]}" \
'-z[end each output line with NUL, not newline]' \
'--zero[end each output line with NUL, not newline]' \
'-h[Print help]' \
'--help[Print help]' \
'*::name:' \
&& ret=0
}
(( $+functions[_dirname_commands] )) ||
_dirname_commands() {
local commands; commands=()
_describe -t commands 'dirname commands' commands "$@"
}
_dirname "$@"