Merge pull request #30294 from bradbeck/zsh-completion

Fix zsh completion setup
This commit is contained in:
Kubernetes Prow Robot
2021-11-22 18:14:16 -08:00
committed by GitHub
9 changed files with 9 additions and 9 deletions
@@ -493,7 +493,7 @@ Si tienes alias para kubectl, puedes extender el completado de intérprete de co
```zsh
echo 'alias k=kubectl' >>~/.zshrc
echo 'complete -F __start_kubectl k' >>~/.zshrc
echo 'compdef __start_kubectl k' >>~/.zshrc
```
Tras recargar tu intérprete de comandos, el auto-completado de kubectl debería funcionar.