0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/fabric/fabric.plugin.zsh

9 lines
243 B
Bash
Raw Normal View History

#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.