mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
14 lines
432 B
Plaintext
14 lines
432 B
Plaintext
#compdef dumper dumper.exe
|
|
#Generated by Felix Rosencrantz
|
|
|
|
local context state line
|
|
typeset -A opt_args
|
|
_arguments \
|
|
'(--verbose -d)'{-d,--verbose}'[be verbose while dumping]' \
|
|
'(--help -h)'{-h,--help}'[output help information and exit]' \
|
|
'(--quiet -q)'{-q,--quiet}'[be quiet while dumping (default)]' \
|
|
'(--version -v)'{-v,--version}'[output version information and exit]' \
|
|
'1: :_file' \
|
|
'*: :_pids'
|
|
|