mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-06 15:30:40 +01:00
Added Yii basic command completion
This commit is contained in:
17
plugins/yii/yii.plugin.zsh
Normal file
17
plugins/yii/yii.plugin.zsh
Normal file
@@ -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'
|
||||||
Reference in New Issue
Block a user