Initial commit

This commit is contained in:
Eric Torres
2019-01-27 20:26:50 -08:00
commit 4c578142c1
17 changed files with 552 additions and 0 deletions

View File

@ -0,0 +1,17 @@
#compdef addpkg
# zsh completions for 'addpkg'
# automatically generated with http://github.com/RobSis/zsh-completion-generator
local arguments
arguments=(
{-h,--help}'[show this help message and exit]'
{-C,--compression-type}'[the compression algorithm the db is using]'
{-c,--clean-cachedir}'[use paccache to clean the cache directory]'
{-R,--remove}'[remove old package files]'
{-s,--sign}'[sign repository file]'
{-v,--verbose}'[increase script verbosity]'
'*:filename:_files'
)
_arguments -s $arguments

View File

@ -0,0 +1,15 @@
#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