1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 08:51:18 +02:00

unposted: add missing options to _ant

This commit is contained in:
Doug Kearns 2005-06-08 16:59:22 +00:00
parent 0ba8ae87ea
commit 1c23db0e00
2 changed files with 10 additions and 2 deletions

@ -1,3 +1,8 @@
2005-06-08 Doug Kearns <djkea2@gus.gscit.monash.edu.au>
* unposted: Completion/Unix/Command/_ant: add missing options specific
to the launch script
2005-06-08 Oliver Kiddle <opk@zsh.org> 2005-06-08 Oliver Kiddle <opk@zsh.org>
* 21315: Completion/AIX/Command/_floppy, * 21315: Completion/AIX/Command/_floppy,

@ -1,6 +1,6 @@
#compdef ant -value-,ANT_ARGS,-default- #compdef ant -value-,ANT_ARGS,-default-
# Apache Ant version 1.6.4 # Apache Ant version 1.6.5
local curcontext="$curcontext" state line expl ret=1 local curcontext="$curcontext" state line expl ret=1
typeset -A opt_args typeset -A opt_args
@ -14,7 +14,10 @@ if [[ $service = *ANT_ARGS* ]]; then
fi fi
_arguments -C \ _arguments -C \
'(- *)'{-h,-help}'[display help information]' \ '(- *)'{-h,-help,--h,--help}'[display help information]' \
'--noconfig[suppress sourcing of configuration files]' \
'--usejikes[enable use of jikes by default, unless set explicitly in configuration files]' \
'--execdebug[print ant exec line generated by this launch script]' \
'(-p -projecthelp *)'{-p,-projecthelp}'[print project help information]' \ '(-p -projecthelp *)'{-p,-projecthelp}'[print project help information]' \
'(- *)-version[display version information]' \ '(- *)-version[display version information]' \
'(- *)-diagnostics[print information helpful to diagnosis or report problems]' \ '(- *)-diagnostics[print information helpful to diagnosis or report problems]' \