mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-09-21 18:46:06 +02:00
Fixes #13964 Co-authored-by: Marc Cornellà <marc@mcornella.com>
19 lines
478 B
Bash
19 lines
478 B
Bash
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.
|
|
zmodload -F zsh/files b:zf_mv
|
|
() {
|
|
local TMPPREFIX="$ZSH_CACHE_DIR/completions/_k9s"
|
|
zf_mv -f -- =( k9s completion zsh ) "$TMPPREFIX"
|
|
} &|
|