mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
8 lines
136 B
Bash
8 lines
136 B
Bash
_fab_list() {
|
|
if [ ! -f fabfile.py ]; then return 0;
|
|
else
|
|
reply=(`fab --shortlist`)
|
|
fi
|
|
}
|
|
|
|
compctl -K _fab_list fab
|