mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
8 lines
183 B
Bash
8 lines
183 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
|