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

This commit is contained in:
Brian Tannous 2021-11-17 01:33:48 -08:00 committed by GitHub
commit 2b379ec42c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

8
plugins/kn/kn.plugin.zsh Normal file
View file

@ -0,0 +1,8 @@
# 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