This repository has been archived on 2025-01-31. You can view files and clone it, but cannot push or open issues or pull requests.
home/.oh-my-zsh/plugins/phing/phing.plugin.zsh

8 lines
209 B
Bash

_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