16 lines
411 B
Plaintext
16 lines
411 B
Plaintext
|
#compdef delpkg
|
||
|
|
||
|
# zsh completions for 'delpkg'
|
||
|
# automatically generated with http://github.com/RobSis/zsh-completion-generator
|
||
|
local arguments
|
||
|
|
||
|
arguments=(
|
||
|
{-c,--clean-cachedir}'[run paccache to clean the cache directory]'
|
||
|
{-h,--help}'[show this help message and exit]'
|
||
|
{-s,--sign}'[sign repository file]'
|
||
|
{-v, --verbose}'[increase script verbosity]'
|
||
|
'*:filename:_files'
|
||
|
)
|
||
|
|
||
|
_arguments -s $arguments
|