summaryrefslogtreecommitdiff
path: root/plugins/fabric/fabric.plugin.zsh
blob: d44e2d916c258710860fe309cf208aafa2a49d42 (plain)
1
2
3
4
5
6
7
8
#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.