From 16c84ec8ded6a2a64106b76d56db9bedb099148e Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Fri, 2 Sep 2005 09:17:32 +0000 Subject: 21693: Jean-Baptiste Quenot: recursively find ant targets --- Completion/Unix/Command/_ant | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) (limited to 'Completion/Unix/Command/_ant') diff --git a/Completion/Unix/Command/_ant b/Completion/Unix/Command/_ant index 2c0e252d6..bf70915d7 100644 --- a/Completion/Unix/Command/_ant +++ b/Completion/Unix/Command/_ant @@ -6,6 +6,18 @@ local curcontext="$curcontext" state line expl ret=1 typeset -A opt_args local buildfile classpath cp userjars importedfiles target='*:target:->target' targets tmp +find_targets() { + importedfiles=( $(sed -n "s/ *]* file=[\"']\([^\"']*\)[\"'].*/\1/p" < $1) ) + targets=( $(sed -n "s/ *]* name=[\"']\([^\"']*\)[\"'].*/\1/p" $1) ) + if (( $#importedfiles )) ; then + cd $1:h + for file in $importedfiles ; do + find_targets $file + done + fi + _wanted targets expl target compadd -a targets && ret=0 +} + if [[ $service = *ANT_ARGS* ]]; then compset -q words=( fake "$words[@]" ) @@ -114,11 +126,7 @@ case $state in )//$'\015'}" _describe 'target' tmp && ret=0 else - importedfiles=( $(sed -n "s/ *]* file=[\"']\([^\"']*\)[\"'].*/\1/p" < $buildfile) ) - targets=( $(sed -n "s/ *]* name=[\"']\([^\"']*\)[\"'].*/\1/p" $buildfile) ) - (( $#importedfiles )) && targets+=( $(cd $buildfile:h; - sed -n "s/ *]* name=[\"']\([^\"']*\)[\"'].*/\1/p" $importedfiles) ) - _wanted targets expl target compadd -a targets && ret=0 + find_targets $buildfile fi else _message -e targets target -- cgit 1.4.1