Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
34 lines
1.0 KiB
Bash
34 lines
1.0 KiB
Bash
#! /bin/bash
|
|
# based on https://github.com/urfave/cli/blob/v2.27.6/autocomplete/bash_autocomplete
|
|
|
|
# Macs have bash3 for which the bash-completion package doesn't include
|
|
# _init_completion. This is a minimal version of that function.
|
|
_cli_init_completion() {
|
|
COMPREPLY=()
|
|
_get_comp_words_by_ref "$@" cur prev words cword
|
|
}
|
|
|
|
_cli_bash_autocomplete() {
|
|
if [[ "${COMP_WORDS[0]}" != "source" ]]; then
|
|
local cur opts base words
|
|
COMPREPLY=()
|
|
cur="${COMP_WORDS[COMP_CWORD]}"
|
|
if declare -F _init_completion >/dev/null 2>&1; then
|
|
_init_completion -n "=:" || return
|
|
else
|
|
_cli_init_completion -n "=:" || return
|
|
fi
|
|
words=("${words[@]:0:$cword}")
|
|
if [[ "$cur" == "-"* ]]; then
|
|
requestComp="${words[*]} ${cur} --generate-bash-completion"
|
|
else
|
|
requestComp="${words[*]} --generate-bash-completion"
|
|
fi
|
|
opts=$(eval "${requestComp}" 2>/dev/null)
|
|
COMPREPLY=($(compgen -W "${opts}" -- ${cur}))
|
|
return 0
|
|
fi
|
|
}
|
|
|
|
complete -o bashdefault -o default -o nospace -F _cli_bash_autocomplete tcld
|