1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-04-10 16:32:00 +00:00
Files
ohmyzsh-mirror/plugins/istioctl/istioctl.plugin.zsh
2026-04-02 23:47:55 +02:00

15 lines
452 B
Bash

# Autocompletion for the Istio CLI (istioctl).
if (( ! $+commands[istioctl] )); then
return
fi
# If the completion file doesn't exist yet, we need to autoload it and
# bind it to `istioctl`. Otherwise, compinit will have already done that.
if [[ ! -f "$ZSH_CACHE_DIR/completions/_istioctl" ]]; then
typeset -g -A _comps
autoload -Uz _istioctl
_comps[istioctl]=_istioctl
fi
istioctl completion zsh >| "$ZSH_CACHE_DIR/completions/_istioctl" &|