ohmyzsh/plugins/fabric/fabric.plugin.zsh
2011-10-19 10:21:21 -03:00

8 lines
136 B
Bash

_fab_list() {
if [ ! -f fabfile.py ]; then return 0;
else
reply=(`fab --shortlist`)
fi
}
compctl -K _fab_list fab