2015-05-12 17:23:05 +00:00
|
|
|
# CakePHP 3 basic command completion
|
|
|
|
_cakephp3_get_command_list () {
|
2016-05-18 21:58:12 +00:00
|
|
|
bin/cake Completion commands
|
|
|
|
}
|
|
|
|
|
|
|
|
_cakephp3_get_sub_command_list () {
|
|
|
|
bin/cake Completion subcommands ${words[2]}
|
|
|
|
}
|
|
|
|
|
|
|
|
_cakephp3_get_3rd_argument () {
|
2016-05-23 10:33:17 +00:00
|
|
|
bin/cake ${words[2]} ${words[3]} | \grep '\-\ '| \awk '{print $2}'
|
2015-05-12 17:23:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_cakephp3 () {
|
2016-05-23 10:33:17 +00:00
|
|
|
local -a has3rdargument
|
|
|
|
has3rdargument=("all" "controller" "fixture" "model" "template")
|
|
|
|
if [ -f bin/cake ]; then
|
2016-05-18 21:58:12 +00:00
|
|
|
if (( CURRENT == 2 )); then
|
2016-05-23 10:33:17 +00:00
|
|
|
compadd $(_cakephp3_get_command_list)
|
2016-05-18 21:58:12 +00:00
|
|
|
fi
|
|
|
|
if (( CURRENT == 3 )); then
|
2016-05-23 10:33:17 +00:00
|
|
|
compadd $(_cakephp3_get_sub_command_list)
|
2016-05-18 21:58:12 +00:00
|
|
|
fi
|
|
|
|
if (( CURRENT == 4 )); then
|
2016-05-23 10:33:17 +00:00
|
|
|
if [[ ${has3rdargument[(i)${words[3]}]} -le ${#has3rdargument} ]]; then
|
|
|
|
compadd $(_cakephp3_get_3rd_argument)
|
2016-05-18 21:58:12 +00:00
|
|
|
fi
|
|
|
|
fi
|
2015-05-12 17:23:05 +00:00
|
|
|
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'
|