my xfce4 dotfiles
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

3 years ago
  1. # Autocompletion for Minikube.
  2. #
  3. if (( $+commands[minikube] )); then
  4. __MINIKUBE_COMPLETION_FILE="${ZSH_CACHE_DIR}/minikube_completion"
  5. if [[ ! -f $__MINIKUBE_COMPLETION_FILE ]]; then
  6. minikube completion zsh >! $__MINIKUBE_COMPLETION_FILE
  7. fi
  8. [[ -f $__MINIKUBE_COMPLETION_FILE ]] && source $__MINIKUBE_COMPLETION_FILE
  9. unset __MINIKUBE_COMPLETION_FILE
  10. fi