zsh: remove unused tekton completion

This commit is contained in:
Daniel Lundin 2023-06-24 14:18:05 +02:00
parent c355831103
commit 9d0eefb5dc

5
.zshrc
View file

@ -229,11 +229,6 @@ if [ ! -f "${fpath[1]}/_jj" ]; then
command -v jj >/dev/null 2>&1 && jj util completion --zsh > "${fpath[1]}/_jj"
fi
## Tekton cli
if [ ! -f "${fpath[1]}/_tkn" ]; then
command -v tkn >/dev/null 2>&1 && tkn completion zsh > "${fpath[1]}/_tkn"
fi
## kapp
if [ ! -f "${fpath[1]}/_kapp" ]; then
command -v kapp >/dev/null 2>&1 && kapp completion zsh --tty=false > "${fpath[1]}/_kapp"