mirror of https://github.com/spf13/cobra.git
Handle wordbreaks better.
Signed-off-by: Jeffrey Faer <jeffrey.faer@gmail.com>
This commit is contained in:
parent
9771cb0949
commit
718f1d85e5
|
@ -169,8 +169,9 @@ __%[1]s_process_completion_results() {
|
||||||
__%[1]s_handle_completion_types
|
__%[1]s_handle_completion_types
|
||||||
fi
|
fi
|
||||||
|
|
||||||
__%[1]s_handle_special_char "$cur" :
|
__%[1]s_handle_wordbreaks "$cur"
|
||||||
__%[1]s_handle_special_char "$cur" =
|
|
||||||
|
__%[1]s_debug "The final COMPREPLY: $(printf "%%s\n" "${COMPREPLY[@]}")"
|
||||||
|
|
||||||
# Print the activeHelp statements before we finish
|
# Print the activeHelp statements before we finish
|
||||||
if ((${#activeHelp[*]} != 0)); then
|
if ((${#activeHelp[*]} != 0)); then
|
||||||
|
@ -236,6 +237,12 @@ __%[1]s_handle_completion_types() {
|
||||||
*)
|
*)
|
||||||
# Type: complete (normal completion)
|
# Type: complete (normal completion)
|
||||||
__%[1]s_handle_standard_completion_case
|
__%[1]s_handle_standard_completion_case
|
||||||
|
|
||||||
|
# If there is a single completion left, escape the completion
|
||||||
|
if ((${#COMPREPLY[@]} == 1)); then
|
||||||
|
COMPREPLY[0]="$(printf "%%q" "${COMPREPLY[0]}")"
|
||||||
|
fi
|
||||||
|
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
@ -252,11 +259,6 @@ __%[1]s_handle_standard_completion_case() {
|
||||||
local compgen_cur="$(printf "%%q" "${cur}")"
|
local compgen_cur="$(printf "%%q" "${cur}")"
|
||||||
IFS=$'\n' read -ra COMPREPLY -d '' < <(IFS=$'\n'; compgen -W "${compgen_words}" -- "${compgen_cur}")
|
IFS=$'\n' read -ra COMPREPLY -d '' < <(IFS=$'\n'; compgen -W "${compgen_words}" -- "${compgen_cur}")
|
||||||
|
|
||||||
# If there is a single completion left, escape the completion
|
|
||||||
if ((${#COMPREPLY[*]} == 1)); then
|
|
||||||
COMPREPLY[0]=$(printf %%q "${COMPREPLY[0]}")
|
|
||||||
fi
|
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -280,21 +282,30 @@ __%[1]s_handle_standard_completion_case() {
|
||||||
__%[1]s_debug "COMPREPLY[0]: ${COMPREPLY[0]}"
|
__%[1]s_debug "COMPREPLY[0]: ${COMPREPLY[0]}"
|
||||||
comp="${COMPREPLY[0]%%%%$tab*}"
|
comp="${COMPREPLY[0]%%%%$tab*}"
|
||||||
__%[1]s_debug "Removed description from single completion, which is now: ${comp}"
|
__%[1]s_debug "Removed description from single completion, which is now: ${comp}"
|
||||||
COMPREPLY[0]="$(printf "%%q" "${comp}")"
|
COMPREPLY[0]="${comp}"
|
||||||
else # Format the descriptions
|
else # Format the descriptions
|
||||||
__%[1]s_format_comp_descriptions $longest
|
__%[1]s_format_comp_descriptions $longest
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
__%[1]s_handle_special_char()
|
__%[1]s_handle_wordbreaks()
|
||||||
{
|
{
|
||||||
|
if ((${#COMPREPLY[@]} == 0)); then
|
||||||
|
return;
|
||||||
|
fi
|
||||||
|
|
||||||
local comp="$1"
|
local comp="$1"
|
||||||
local char=$2
|
local i prefix
|
||||||
if [[ "$comp" == *${char}* && "$COMP_WORDBREAKS" == *${char}* ]]; then
|
for ((i=0; i < ${#comp}; i++)); do
|
||||||
local word=${comp%%"${comp##*${char}}"}
|
local char="${comp:$i:1}"
|
||||||
local idx=${#COMPREPLY[*]}
|
if [[ "${COMP_WORDBREAKS}" == *"${char}"* ]]; then
|
||||||
while ((--idx >= 0)); do
|
prefix="${comp::$i+1}"
|
||||||
COMPREPLY[idx]=${COMPREPLY[idx]#"$word"}
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [[ -n "${prefix}" ]]; then
|
||||||
|
for ((i=0; i < ${#COMPREPLY[@]}; i++)); do
|
||||||
|
COMPREPLY[i]=${COMPREPLY[i]#$prefix}
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
@ -351,6 +362,21 @@ __start_%[1]s()
|
||||||
|
|
||||||
COMPREPLY=()
|
COMPREPLY=()
|
||||||
|
|
||||||
|
# Omit wordbreaks that would need to be escaped.
|
||||||
|
local wordbreaks i
|
||||||
|
for ((i=0; i < ${#COMP_WORDBREAKS}; i++)); do
|
||||||
|
local char="${COMP_WORDBREAKS:$i:1}"
|
||||||
|
if [[ $'\n\t ' == *"${char}"* ]]; then
|
||||||
|
wordbreaks+="${char}"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
if [[ "${char}" == "$(printf "%%q" "${char}")" ]]; then
|
||||||
|
wordbreaks+="${char}"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
COMP_WORDBREAKS="${wordbreaks}"
|
||||||
|
|
||||||
# Call _init_completion from the bash-completion package
|
# Call _init_completion from the bash-completion package
|
||||||
# to prepare the arguments properly
|
# to prepare the arguments properly
|
||||||
if declare -F _init_completion >/dev/null 2>&1; then
|
if declare -F _init_completion >/dev/null 2>&1; then
|
||||||
|
|
Loading…
Reference in New Issue