浏览代码

Symfony 2 completion

Andrew Tch 12 年之前
父节点
当前提交
03424fdadb
共有 1 个文件被更改,包括 13 次插入0 次删除
  1. 13 0
      plugins/symfony2/symfony2.plugin.zsh

+ 13 - 0
plugins/symfony2/symfony2.plugin.zsh

@@ -0,0 +1,13 @@
+# Symfony2 basic command completion
+
+_symfony2_get_command_list () {
+	app/console --no-ansi | sed "1,/Available commands/d" | awk '/^  [a-z]+/ { print $1 }'
+}
+
+_symfony2 () {
+  if [ -f app/console ]; then
+    compadd `_symfony2_get_command_list`
+  fi
+}
+
+compdef _symfony2 app/console