diff options
author | Brian Tannous <brian@briantannous.com> | 2021-11-17 01:33:48 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-17 10:33:48 +0100 |
commit | 2b379ec42c8675d6076737e1373767c160f5ae70 (patch) | |
tree | ff2fc687996b95514dd1b6aea506fce3ab652751 /plugins/kn/README.md | |
parent | 60b89cd264a5d889573704f5116cefc8e690062c (diff) | |
download | zsh-2b379ec42c8675d6076737e1373767c160f5ae70.tar.gz zsh-2b379ec42c8675d6076737e1373767c160f5ae70.tar.bz2 zsh-2b379ec42c8675d6076737e1373767c160f5ae70.zip |
feat(kn): add plugin for `kn` completion (#8927)
Diffstat (limited to 'plugins/kn/README.md')
-rw-r--r-- | plugins/kn/README.md | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/plugins/kn/README.md b/plugins/kn/README.md new file mode 100644 index 000000000..d2eb9b31d --- /dev/null +++ b/plugins/kn/README.md @@ -0,0 +1,17 @@ +# 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 |