mirror of
https://github.com/spf13/cobra
synced 2024-11-24 14:47:12 +00:00
Don't quote different completion types.
They're not going through compgen so they don't need it.
This commit is contained in:
parent
fcc5b8c34c
commit
9ac0f55513
1 changed files with 1 additions and 10 deletions
|
@ -220,24 +220,15 @@ __%[1]s_handle_completion_types() {
|
|||
# completions at once on the command-line we must remove the descriptions.
|
||||
# https://github.com/spf13/cobra/issues/1508
|
||||
local tab=$'\t' comp
|
||||
local matches=()
|
||||
for comp in "${completions[@]}"; do
|
||||
[[ -z $comp ]] && continue
|
||||
# Strip any description
|
||||
comp=${comp%%%%$tab*}
|
||||
# Only consider the completions that match
|
||||
if [[ $comp == "$cur"* ]]; then
|
||||
# Strictly speaking we could append directly to COMPREPLY here.
|
||||
# But there's a pretty big performance hit involved with
|
||||
# creating one subshell to printf %%q for each completion that
|
||||
# matches. Instead, batch all the matches up so we can quote
|
||||
# them all at once in a single printf call.
|
||||
matches+=( "$comp" )
|
||||
COMPREPLY+=( "$comp" )
|
||||
fi
|
||||
done
|
||||
while IFS='' read -r comp; do
|
||||
COMPREPLY+=( "$comp" )
|
||||
done < <(printf "%%q\n" "${matches[@]}")
|
||||
;;
|
||||
|
||||
*)
|
||||
|
|
Loading…
Reference in a new issue