summaryrefslogtreecommitdiff
path: root/plugins/phing/phing.plugin.zsh
blob: d5a2649bf22de555066d9a39037b7d08b2711a43 (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 "^\-*$"|grep -v "Warning:"|awk '{print $1}')
  fi
}

compdef _phing phing