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.
14 lines
394 B
14 lines
394 B
if (( ! $+commands[k9s] )); then |
|
return |
|
fi |
|
|
|
# If the completion file does not exist, fake it and load it |
|
if [[ ! -f "$ZSH_CACHE_DIR/completions/_k9s" ]]; then |
|
typeset -g -A _comps |
|
autoload -Uz _k9s |
|
_comps[k9s]=_k9s |
|
fi |
|
|
|
# and then generate it in the background. On first completion, |
|
# the actual completion file will be loaded. |
|
k9s completion zsh >| "$ZSH_CACHE_DIR/completions/_k9s" &|
|
|
|