ohmyzsh/plugins/fabric/fabric.plugin.zsh
2012-11-08 15:06:35 -08: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