diff options
author | Luis Serra <74016165+serrovsky@users.noreply.github.com> | 2022-11-23 17:24:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-23 18:24:08 +0100 |
commit | 5485d70df2cefa9374c477425d2c1c84646a7d49 (patch) | |
tree | 974d42610e413f687fb1d2841ec5ef187ae84edf /plugins/fluxcd/fluxcd.plugin.zsh | |
parent | 8ef9abc9621321c41e89c578bc6f12176696f36c (diff) | |
download | zsh-5485d70df2cefa9374c477425d2c1c84646a7d49.tar.gz zsh-5485d70df2cefa9374c477425d2c1c84646a7d49.tar.bz2 zsh-5485d70df2cefa9374c477425d2c1c84646a7d49.zip |
feat(fluxcd): add completion for flux (#11350)
Diffstat (limited to 'plugins/fluxcd/fluxcd.plugin.zsh')
-rw-r--r-- | plugins/fluxcd/fluxcd.plugin.zsh | 14 |
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" &| |