
Since recent versions of `vndr` are going to remove the autocomplete scripts from the urfave vendored content, we will just move them into `contrib/` and reference them in the documentation from that location. Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com>
16 lines
400 B
Plaintext
16 lines
400 B
Plaintext
#compdef ctr
|
|
# This file is a direct copy of https://github.com/urfave/cli/blob/a221e662f14fd7404302444a5c4293409a401210/autocomplete/zsh_autocomplete
|
|
# With $PROG changed to ctr
|
|
|
|
_cli_zsh_autocomplete() {
|
|
|
|
local -a opts
|
|
opts=("${(@f)$(_CLI_ZSH_AUTOCOMPLETE_HACK=1 ${words[@]:0:#words[@]-1} --generate-bash-completion)}")
|
|
|
|
_describe 'values' opts
|
|
|
|
return
|
|
}
|
|
|
|
compdef _cli_zsh_autocomplete ctr
|