mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +01:00
Add CakePHP3 plugin
This commit is contained in:
parent
140034605e
commit
6504a2d386
1 changed files with 19 additions and 0 deletions
19
plugins/cakephp3/cakephp3.plugin.zsh
Normal file
19
plugins/cakephp3/cakephp3.plugin.zsh
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
# CakePHP 3 basic command completion
|
||||||
|
_cakephp3_get_command_list () {
|
||||||
|
cakephp3commands=($(bin/cake completion commands));printf "%s\n" "${cakephp3commands[@]}"
|
||||||
|
}
|
||||||
|
|
||||||
|
_cakephp3 () {
|
||||||
|
if [ -f bin/cake ]; then
|
||||||
|
compadd `_cakephp3_get_command_list`
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
compdef _cakephp3 bin/cake
|
||||||
|
compdef _cakephp3 cake
|
||||||
|
|
||||||
|
#Alias
|
||||||
|
alias c3='bin/cake'
|
||||||
|
|
||||||
|
alias c3cache='bin/cake orm_cache clear'
|
||||||
|
alias c3migrate='bin/cake migrations migrate'
|
Loading…
Reference in a new issue