diff options
| author | Tuowen Zhao <ztuowen@gmail.com> | 2018-06-09 13:05:26 -0400 | 
|---|---|---|
| committer | Tuowen Zhao <ztuowen@gmail.com> | 2018-06-09 13:05:26 -0400 | 
| commit | 59e91cd97fcc3c406751f019215f957b36614022 (patch) | |
| tree | 850cab9426806618e7e8a7a7b5c905a2be019e50 /plugins/kubectl | |
| parent | db38c7c3b2921783d955912262f87ee7dd8cd31b (diff) | |
| parent | f461d21de1bd0c1394e57a2e3af69778692e4ba4 (diff) | |
| download | zsh-59e91cd97fcc3c406751f019215f957b36614022.tar.gz zsh-59e91cd97fcc3c406751f019215f957b36614022.tar.bz2 zsh-59e91cd97fcc3c406751f019215f957b36614022.zip  | |
Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
Diffstat (limited to 'plugins/kubectl')
| -rw-r--r-- | plugins/kubectl/kubectl.plugin.zsh | 14 | 
1 files changed, 9 insertions, 5 deletions
diff --git a/plugins/kubectl/kubectl.plugin.zsh b/plugins/kubectl/kubectl.plugin.zsh index ec1321d8b..c4e30dacd 100644 --- a/plugins/kubectl/kubectl.plugin.zsh +++ b/plugins/kubectl/kubectl.plugin.zsh @@ -1,9 +1,13 @@ -# Autocompletion for kubectl, the command line interface for Kubernetes -# -# Author: https://github.com/pstadler +if (( $+commands[kubectl] )); then +    __KUBECTL_COMPLETION_FILE="${ZSH_CACHE_DIR}/kubectl_completion" -if [ $commands[kubectl] ]; then -  source <(kubectl completion zsh) +    if [[ ! -f $__KUBECTL_COMPLETION_FILE ]]; then +        kubectl completion zsh >! $__KUBECTL_COMPLETION_FILE +    fi + +    [[ -f $__KUBECTL_COMPLETION_FILE ]] && source $__KUBECTL_COMPLETION_FILE + +    unset __KUBECTL_COMPLETION_FILE  fi  # This command is used ALOT both below and in daily life  | 
