mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-17 10:33:15 +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
|
||
|
|