1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-30 17:50:07 +00:00
ohmyzsh/plugins/tkn/tkn.plugin.zsh

7 lines
225 B
Bash
Raw Normal View History

2022-08-23 19:02:15 +00:00
# Autocompletion for tkn, the command line interface for Tekton Cloud Natice CI/CD (https://tekton.dev/)
# Author: https://github.com/jvarela01
if [ $commands[tkn] ]; then
source <(tkn completion zsh)
compdef _tkn tkn
fi