1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-10 01:10:41 +01:00
Files
oh-my-zsh/plugins/tkn/tkn.plugin.zsh
Jorge Francisco Varela Gutiérrez 0b67d08f13 Added plugin for tekton ci/cd CLI
2022-08-23 14:02:15 -05:00

7 lines
225 B
Bash

# 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