dot_files/dot_oh-my-zsh/plugins/phing/phing.plugin.zsh
Viktor Barzin 58ef6d327f initial
2025-11-22 22:51:27 +00:00

7 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