Drop unnecessary short option completion choices.

This commit is contained in:
Ville Skyttä 2009-10-20 00:54:36 +03:00
parent 45511c54fc
commit 300cf4be3b

View File

@ -33,12 +33,11 @@ _ant()
esac esac
if [[ "$cur" == -* ]]; then if [[ "$cur" == -* ]]; then
COMPREPLY=( $( compgen -W '-help -h -projecthelp -p -version \ COMPREPLY=( $( compgen -W '-help -projecthelp -version -diagnostics \
-diagnostics -quiet -q -verbose -v -debug -d -emacs -e \ -quiet -verbose -debug -emacs -lib -logfile -logger -listener \
-lib -logfile -l -logger -listener -noinput -buildfile \ -noinput -buildfile -D -keep-going -propertyfile -inputhandler \
-file -f -D -keep-going -k -propertyfile -inputhandler \ -find -s -nice -nouserlib -noclasspath -autoproxy -main' \
-find -s -nice -nouserlib -noclasspath -autoproxy \ -- "$cur" ) )
-main' -- "$cur" ) )
else else
# available targets completion # available targets completion
# find which buildfile to use # find which buildfile to use