0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-10-17 04:16:52 +02:00
ohmyzsh/plugins/k9s/k9s.plugin.zsh
Shubham Rajvanshi 4382288aeb
feat(k9s): add completion plugin for k9s (#12691)
Co-authored-by: Marc Cornellà <marc@mcornella.com>
2024-10-08 20:25:20 +02:00

14 lines
394 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.
k9s completion zsh >| "$ZSH_CACHE_DIR/completions/_k9s" &|