2021-12-28 10:49:08 -08:00
|
|
|
if (( ! $+commands[helm] )); then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2022-01-17 12:45:59 +01:00
|
|
|
# If the completion file does not exist, generate it and then source it
|
|
|
|
# Otherwise, source it and regenerate in the background
|
2021-12-28 10:49:08 -08:00
|
|
|
if [[ ! -f "$ZSH_CACHE_DIR/completions/_helm" ]]; then
|
2022-02-24 19:23:15 +01:00
|
|
|
helm completion zsh | tee "$ZSH_CACHE_DIR/completions/_helm" >/dev/null
|
2022-01-17 12:45:59 +01:00
|
|
|
source "$ZSH_CACHE_DIR/completions/_helm"
|
|
|
|
else
|
|
|
|
source "$ZSH_CACHE_DIR/completions/_helm"
|
2022-02-24 19:23:15 +01:00
|
|
|
helm completion zsh | tee "$ZSH_CACHE_DIR/completions/_helm" >/dev/null &|
|
2017-11-06 22:49:27 +08:00
|
|
|
fi
|
2022-12-02 16:19:00 +03:30
|
|
|
|
|
|
|
alias h='helm'
|
|
|
|
alias hin='helm install'
|
|
|
|
alias hse='helm search'
|
|
|
|
alias hup='helm upgrade'
|