1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2025-02-19 00:22:44 +08:00
ohmyzsh/plugins/fabric/fabric.plugin.zsh
2013-01-06 14:08:12 +08:00

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.