Browse Source

Added Yii basic command completion

Igor Timoshenko 10 years ago
parent
commit
354593e9b2
1 changed files with 17 additions and 0 deletions
  1. 17 0
      plugins/yii/yii.plugin.zsh

+ 17 - 0
plugins/yii/yii.plugin.zsh

@@ -0,0 +1,17 @@
+# Yii basic command completion
+
+_yii_get_command_list () {
+	protected/yiic | awk '/^ - [a-z]+/ { print $2 }'
+}
+
+_yii () {
+  if [ -f protected/yiic ]; then
+    compadd `_yii_get_command_list`
+  fi
+}
+
+compdef _yii protected/yiic
+compdef _yii yiic
+
+# Aliases
+alias yiic='protected/yiic'