mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 13:03:13 +08:00
8 lines
181 B
Fish
8 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
|
||
|
|