mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +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
|