0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/cakephp3/cakephp3.plugin.zsh

39 lines
911 B
Bash
Raw Normal View History

2015-05-12 19:23:05 +02:00
# CakePHP 3 basic command completion
_cakephp3_get_command_list () {
bin/cake completion commands
2016-05-18 23:58:12 +02:00
}
_cakephp3_get_sub_command_list () {
bin/cake completion subcommands ${words[2]}
2016-05-18 23:58:12 +02:00
}
_cakephp3_get_3rd_argument () {
2016-05-23 12:33:17 +02:00
bin/cake ${words[2]} ${words[3]} | \grep '\-\ '| \awk '{print $2}'
2015-05-12 19:23:05 +02:00
}
_cakephp3 () {
2016-05-23 12:33:17 +02:00
local -a has3rdargument
has3rdargument=("all" "controller" "fixture" "model" "template")
if [ -f bin/cake ]; then
2016-05-18 23:58:12 +02:00
if (( CURRENT == 2 )); then
2016-05-23 12:33:17 +02:00
compadd $(_cakephp3_get_command_list)
2016-05-18 23:58:12 +02:00
fi
if (( CURRENT == 3 )); then
2016-05-23 12:33:17 +02:00
compadd $(_cakephp3_get_sub_command_list)
2016-05-18 23:58:12 +02:00
fi
if (( CURRENT == 4 )); then
2016-05-23 12:33:17 +02:00
if [[ ${has3rdargument[(i)${words[3]}]} -le ${#has3rdargument} ]]; then
compadd $(_cakephp3_get_3rd_argument)
2016-05-18 23:58:12 +02:00
fi
fi
2015-05-12 19:23:05 +02:00
fi
}
compdef _cakephp3 bin/cake
compdef _cakephp3 cake
#Alias
alias c3='bin/cake'
alias c3cache='bin/cake schema_cache clear'
2015-05-12 19:23:05 +02:00
alias c3migrate='bin/cake migrations migrate'