Improve ant completions. This patch comes from Steven Knight. (minor tweaks applied)

darcs-hash:20080108221608-75c98-a0c7f65c65fb2e2c68085c69e72caa4a2c86a029.gz
This commit is contained in:
liljencrantz 2008-01-09 08:16:08 +10:00
parent cb59da7a6f
commit 9c38ed8238
2 changed files with 15 additions and 4 deletions

View File

@ -1,7 +1,15 @@
function __fish_complete_ant_targets -d "Print list of targets from build.xml and imported files"
set -l buildfile "build.xml"
if test -f $buildfile
# show ant targets
__fish_print_ant_targets $buildfile
function __fish_complete_ant_targets -d "Print list of targets from build.xml"
if test -f build.xml
sed -n "s/ *<target name=[\"']\([^\"']*\)[\"'].*/\1/p" < build.xml
# find files with buildfile
set files (sed -n "s/^.*<import[^>]* file=[\"']\([^\"']*\)[\"'].*\$/\1/p" < $buildfile)
# iterate through files and display their targets
for file in $files;
__fish_filter_ant_targets $file
end
end
end

View File

@ -0,0 +1,3 @@
function __fish_filter_ant_targets -d "Display targets within an ant build.xml file"
sed -n "s/^.*<target[^>]* name=[\"']\([^\"']*\)[\"'].*\$/\1/p" < $argv[1]
end