summaryrefslogtreecommitdiff
path: root/plugins/k9s/k9s.plugin.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/k9s/k9s.plugin.zsh')
-rw-r--r--plugins/k9s/k9s.plugin.zsh14
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/k9s/k9s.plugin.zsh b/plugins/k9s/k9s.plugin.zsh
new file mode 100644
index 000000000..630d4f7d3
--- /dev/null
+++ b/plugins/k9s/k9s.plugin.zsh
@@ -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" &|