Fabric autocompletion plugin

This commit is contained in:
santi 2011-10-19 10:21:21 -03:00
commit 207220f04f

View file

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