fabric.plugin.zsh 243 B

12345678
  1. #compdef fab
  2. _fab_list() {
  3. reply=(`fab --shortlist`)
  4. }
  5. compctl -K _fab_list fab
  6. # DECLARION: This plugin was created by kennethreitz. What I did is just making a portal from https://github.com/kennethreitz-archive/fabric-zsh-completion.