mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 08:20:09 +00:00
Merge pull request #6844 from lbolla/Issue6843
Cache kubectl completion script to file to speed up sourcing
This commit is contained in:
commit
957eb77239
1 changed files with 9 additions and 5 deletions
|
@ -1,9 +1,13 @@
|
||||||
# Autocompletion for kubectl, the command line interface for Kubernetes
|
if (( $+commands[kubectl] )); then
|
||||||
#
|
__KUBECTL_COMPLETION_FILE="${ZSH_CACHE_DIR}/kubectl_completion"
|
||||||
# Author: https://github.com/pstadler
|
|
||||||
|
|
||||||
if [ $commands[kubectl] ]; then
|
if [[ ! -f $__KUBECTL_COMPLETION_FILE ]]; then
|
||||||
source <(kubectl completion zsh)
|
kubectl completion zsh >! $__KUBECTL_COMPLETION_FILE
|
||||||
|
fi
|
||||||
|
|
||||||
|
[[ -f $__KUBECTL_COMPLETION_FILE ]] && source $__KUBECTL_COMPLETION_FILE
|
||||||
|
|
||||||
|
unset __KUBECTL_COMPLETION_FILE
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# This command is used ALOT both below and in daily life
|
# This command is used ALOT both below and in daily life
|
||||||
|
|
Loading…
Reference in a new issue