dotfiles/zsh/.oh-my-zsh/plugins/kn/kn.plugin.zsh

9 lines
182 B
Bash
Raw Normal View History

2024-06-19 00:06:56 +02:00
# 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