Fix zsh completion setup

This commit is contained in:
Brad Beck
2021-10-28 10:02:50 -05:00
parent 891953ec20
commit b48ddd9e90
9 changed files with 9 additions and 9 deletions
@@ -32,7 +32,7 @@ If you have an alias for kubectl, you can extend shell completion to work with t
```zsh
echo 'alias k=kubectl' >>~/.zshrc
echo 'complete -F __start_kubectl k' >>~/.zshrc
echo 'compdef __start_kubectl k' >>~/.zshrc
```
<!--