mirror of https://gitlab.com/dabruh/dotfiles.git
Fix weird bug in completion caused by load order.
This commit is contained in:
parent
fb22c4bd70
commit
5e781e4df9
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue