0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-12 04:01:14 +02:00

feat(cakephp3): add compatibility with CakePHP 3.7+ (#11080)

This commit is contained in:
Bill Haofei Gong 2022-11-16 05:25:22 +11:00 committed by GitHub
parent aafc7443f0
commit 94584e2a73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,10 +1,10 @@
# CakePHP 3 basic command completion # CakePHP 3 basic command completion
_cakephp3_get_command_list () { _cakephp3_get_command_list () {
bin/cake Completion commands bin/cake completion commands
} }
_cakephp3_get_sub_command_list () { _cakephp3_get_sub_command_list () {
bin/cake Completion subcommands ${words[2]} bin/cake completion subcommands ${words[2]}
} }
_cakephp3_get_3rd_argument () { _cakephp3_get_3rd_argument () {
@ -34,5 +34,5 @@ compdef _cakephp3 cake
#Alias #Alias
alias c3='bin/cake' alias c3='bin/cake'
alias c3cache='bin/cake orm_cache clear' alias c3cache='bin/cake schema_cache clear'
alias c3migrate='bin/cake migrations migrate' alias c3migrate='bin/cake migrations migrate'