mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-29 04:53:17 +02:00
feat(talosctl): Add completions for talosctl
Signed-off-by: Jonathan Stacks <jonstacks@users.noreply.github.com>
This commit is contained in:
parent
7c10d9839f
commit
92c28758b9
2 changed files with 34 additions and 0 deletions
14
plugins/talosctl/talosctl.plugin.zsh
Normal file
14
plugins/talosctl/talosctl.plugin.zsh
Normal 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" &|
|
||||
Loading…
Add table
Add a link
Reference in a new issue