mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 08:20:09 +00:00
9 lines
243 B
Bash
9 lines
243 B
Bash
|
#compdef fab
|
||
|
|
||
|
_fab_list() {
|
||
|
reply=(`fab --shortlist`)
|
||
|
}
|
||
|
compctl -K _fab_list fab
|
||
|
|
||
|
# DECLARION: This plugin was created by kennethreitz. What I did is just making a portal from https://github.com/kennethreitz-archive/fabric-zsh-completion.
|