mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 16:07:33 +00:00
4b9dcf1cf2
darcs-hash:20061205235252-ac50b-112c0ff335e456ed0b419c6c5c7a889c517baed1.gz
7 lines
181 B
Fish
7 lines
181 B
Fish
|
|
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
|
|
end
|
|
end
|
|
|