summaryrefslogtreecommitdiff
path: root/home/.oh-my-zsh/plugins/k9s
diff options
context:
space:
mode:
authornavewindre <boneyaard@gmail.com>2025-07-13 06:42:05 +0200
committernavewindre <boneyaard@gmail.com>2025-07-13 06:42:05 +0200
commit02f14a9cb152561a5e44062aac79f3b700403b40 (patch)
tree2db8ebda3b7f6f8777783aeb5c60018e6e1359d8 /home/.oh-my-zsh/plugins/k9s
parentcbbdeb2f6b40a102a829f0c47cff052937231f00 (diff)
omz
Diffstat (limited to 'home/.oh-my-zsh/plugins/k9s')
-rw-r--r--home/.oh-my-zsh/plugins/k9s/README.md9
-rw-r--r--home/.oh-my-zsh/plugins/k9s/k9s.plugin.zsh14
2 files changed, 23 insertions, 0 deletions
diff --git a/home/.oh-my-zsh/plugins/k9s/README.md b/home/.oh-my-zsh/plugins/k9s/README.md
new file mode 100644
index 0000000..275048c
--- /dev/null
+++ b/home/.oh-my-zsh/plugins/k9s/README.md
@@ -0,0 +1,9 @@
+# k9s plugin
+
+This plugin adds completion support for the [k9s](https://k9scli.io).
+
+To use it, add `k9s` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... k9s)
+```
diff --git a/home/.oh-my-zsh/plugins/k9s/k9s.plugin.zsh b/home/.oh-my-zsh/plugins/k9s/k9s.plugin.zsh
new file mode 100644
index 0000000..630d4f7
--- /dev/null
+++ b/home/.oh-my-zsh/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" &|