feat(talosctl): Add completions for talosctl

Signed-off-by: Jonathan Stacks <jonstacks@users.noreply.github.com>
This commit is contained in:
Jonathan Stacks 2024-11-27 01:13:04 -06:00
commit 92c28758b9
No known key found for this signature in database
GPG key ID: FB934A2184BB941E
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,14 @@
# Autocompletion for talosctl
if (( ! $+commands[talosctl] )); then
return
fi
# If the completion file doesn't exist yet, we need to autoload it and
# bind it to `talosctl`. Otherwise, compinit will have already done that.
if [[ ! -f "$ZSH_CACHE_DIR/completions/_talosctl" ]]; then
typeset -g -A _comps
autoload -Uz _talosctl
_comps[talosctl]=_talosctl
fi
talosctl completion zsh >| "$ZSH_CACHE_DIR/completions/_talosctl" &|