summaryrefslogtreecommitdiff
path: root/plugins/phing/phing.plugin.zsh
blob: 60f59c3b08e290137cdb09e1da89c2c740bbddcf (plain)
1
2
3
4
5
6
7
_phing () {
  if [ -f build.xml ]; then
    compadd $(phing -l|grep -v "\[property\]"|grep -v "Buildfile"|sed 1d|grep -v ":$" |grep -v "^\-*$"|awk '{print $1}')
  fi
}

compdef _phing phing