浏览代码

Add new plugin to autocomplete fabric commands

Stephen Zhuang 12 年之前
父节点
当前提交
692dca0715
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. 8 0
      plugins/fabric/fabric.plugin.zsh

+ 8 - 0
plugins/fabric/fabric.plugin.zsh

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