Unverified Commit 2b379ec4 authored by Brian Tannous's avatar Brian Tannous Committed by GitHub

feat(kn): add plugin for `kn` completion (#8927)

parent 60b89cd2
# kn - Knative CLI
This plugin provides autocompletion for [kn](https://knative.dev/docs/install/client/install-kn/) operations.
To use it, add `kn` to the plugins array of your zshrc file:
```zsh
plugins=(... kn)
```
## See Also
+ [kn/client](https://github.com/knative/client)
## Contributors
+ [btannous](https://github.com/btannous) - Plugin Author
# Autocompletion for kn, the command line interface for knative
#
# Author: https://github.com/btannous
if [ $commands[kn] ]; then
source <(kn completion zsh)
compdef _kn kn
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment