summaryrefslogtreecommitdiff
path: root/plugins/fluxcd/fluxcd.plugin.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/fluxcd/fluxcd.plugin.zsh')
-rw-r--r--plugins/fluxcd/fluxcd.plugin.zsh14
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/fluxcd/fluxcd.plugin.zsh b/plugins/fluxcd/fluxcd.plugin.zsh
new file mode 100644
index 000000000..d30866a06
--- /dev/null
+++ b/plugins/fluxcd/fluxcd.plugin.zsh
@@ -0,0 +1,14 @@
+# Autocompletion for the FluxCD CLI (flux).
+if (( ! $+commands[flux] )); then
+ return
+fi
+
+# If the completion file doesn't exist yet, we need to autoload it and
+# bind it to `flux`. Otherwise, compinit will have already done that.
+if [[ ! -f "$ZSH_CACHE_DIR/completions/_flux" ]]; then
+ typeset -g -A _comps
+ autoload -Uz _flux
+ _comps[flux]=_flux
+fi
+
+flux completion zsh >| "$ZSH_CACHE_DIR/completions/_flux" &|