mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
13 lines
383 B
Bash
13 lines
383 B
Bash
# Autocompletion for Minikube.
|
|
#
|
|
if (( $+commands[minikube] )); then
|
|
__MINICUBE_COMPLETION_FILE="${ZSH_CACHE_DIR}/minicube_completion"
|
|
|
|
if [[ ! -f $__MINICUBE_COMPLETION_FILE ]]; then
|
|
minikube completion zsh >! $__MINICUBE_COMPLETION_FILE
|
|
fi
|
|
|
|
[[ -f $__MINICUBE_COMPLETION_FILE ]] && source $__MINICUBE_COMPLETION_FILE
|
|
|
|
unset __MINICUBE_COMPLETION_FILE
|
|
fi
|