Custom completion plugins

Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
This commit is contained in:
Gaetan Semet 2013-06-26 17:26:03 +02:00
commit 95c580cabb
7 changed files with 152 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#compdef artget.py
#
# this is zsh completion function file.
# generated by genzshcomp(ver: 0.5.1)
#
typeset -A opt_args
local context state line
_arguments -s -S \
"-h[show this help message and exit]:" \
"--help[show this help message and exit]:" \
"--creds[base64 encoded credentials to log into the artifactory server]::CREDS:_files" \
"--user[credentials to log into the artifactory server]::USER:_files" \
"--password[credentials to log into the artifactory server path of the file where the artifact should be stored]::PASSWORD:_files" \
"*::args:_files"