mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 13:33:52 +01:00
unposted: add missing options to _ant
This commit is contained in:
parent
0ba8ae87ea
commit
1c23db0e00
@ -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]' \
|
||||||
|
Loading…
Reference in New Issue
Block a user