Fix weird bug in completion caused by load order.

This commit is contained in:
dabruh 2022-06-07 14:47:42 +02:00
parent fb22c4bd70
commit 5e781e4df9
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/zsh
# Auto-complete section
command -v flux >/dev/null && . <(flux completion zsh) && complete -F _flux f
command -v helm >/dev/null && . <(helm completion zsh) && complete -F _helm h
command -v kubectl >/dev/null && . <(kubectl completion zsh) && complete -F __start_kubectl k
command -v velero >/dev/null && . <(velero completion zsh) && complete -F __start_velero v
command -v helm >/dev/null && . <(helm completion zsh) && complete -F _helm h
command -v flux >/dev/null && . <(flux completion zsh) && complete -F _flux f