diff options
| author | Bill Haofei Gong <x-magic@users.noreply.github.com> | 2022-11-16 05:25:22 +1100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-15 19:25:22 +0100 | 
| commit | 94584e2a7337e0a7f5af45e2c97ca6d0770e67a1 (patch) | |
| tree | 6ce93614988d0401947d26647b69937c774c4b55 | |
| parent | aafc7443f07b841b4c008951087bfad282f3341f (diff) | |
| download | zsh-94584e2a7337e0a7f5af45e2c97ca6d0770e67a1.tar.gz zsh-94584e2a7337e0a7f5af45e2c97ca6d0770e67a1.tar.bz2 zsh-94584e2a7337e0a7f5af45e2c97ca6d0770e67a1.zip  | |
feat(cakephp3): add compatibility with CakePHP 3.7+ (#11080)
| -rw-r--r-- | plugins/cakephp3/cakephp3.plugin.zsh | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/cakephp3/cakephp3.plugin.zsh b/plugins/cakephp3/cakephp3.plugin.zsh index dbfbeba3b..a1a289fd0 100644 --- a/plugins/cakephp3/cakephp3.plugin.zsh +++ b/plugins/cakephp3/cakephp3.plugin.zsh @@ -1,10 +1,10 @@  # CakePHP 3 basic command completion  _cakephp3_get_command_list () { -	bin/cake Completion commands +	bin/cake completion commands  }  _cakephp3_get_sub_command_list () { -	bin/cake Completion subcommands ${words[2]} +	bin/cake completion subcommands ${words[2]}  }  _cakephp3_get_3rd_argument () { @@ -34,5 +34,5 @@ compdef _cakephp3 cake  #Alias  alias c3='bin/cake' -alias c3cache='bin/cake orm_cache clear' +alias c3cache='bin/cake schema_cache clear'  alias c3migrate='bin/cake migrations migrate'  | 
