1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2026-01-05 18:14:47 +01:00

Add new plugin to autocomplete fabric commands

This commit is contained in:
Stephen Zhuang
2013-01-06 14:08:12 +08:00
parent fbf82ae62f
commit 692dca0715

View File

@@ -0,0 +1,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.