You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
383 B
13 lines
383 B
# Autocompletion for Minikube. |
|
# |
|
if (( $+commands[minikube] )); then |
|
__MINIKUBE_COMPLETION_FILE="${ZSH_CACHE_DIR}/minikube_completion" |
|
|
|
if [[ ! -f $__MINIKUBE_COMPLETION_FILE ]]; then |
|
minikube completion zsh >! $__MINIKUBE_COMPLETION_FILE |
|
fi |
|
|
|
[[ -f $__MINIKUBE_COMPLETION_FILE ]] && source $__MINIKUBE_COMPLETION_FILE |
|
|
|
unset __MINIKUBE_COMPLETION_FILE |
|
fi
|
|
|