Files
zsh-config/plugins/kn/kn.plugin.zsh
2026-03-01 20:58:45 -06:00

9 lines
182 B
Bash

# 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