feat(k9s): add completion plugin for k9s (#12691)

Co-authored-by: Marc Cornellà <marc@mcornella.com>
This commit is contained in:
Shubham Rajvanshi 2024-10-08 13:25:20 -05:00 committed by GitHub
commit 4382288aeb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,14 @@
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" &|