From: Nguyễn Thái Ngọc Duy Date: Sat, 26 May 2018 13:55:30 +0000 (+0200) Subject: completion: support case-insensitive config vars X-Git-Tag: v2.19.0-rc0~187^2~2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/bea2125928f4d6ddad34c6e651d4a9ec7ee5dd4e?ds=inline;hp=-c completion: support case-insensitive config vars Config variables are case-insensitive but this case/esac construct is case-sensitive by default. For bash v4, it'll be easy. For platforms that are stuck with older versions, we need an external command, but that is not that critical. And where this additional overhead matters the most is Windows, but luckily Git for Windows ships with Bash v4. Helped-by: SZEDER Gábor Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- bea2125928f4d6ddad34c6e651d4a9ec7ee5dd4e diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index e74d50a4b9..97776fb31a 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1995,7 +1995,15 @@ __git_compute_config_vars () _git_config () { - case "$prev" in + local varname + + if [ "${BASH_VERSINFO[0]:-0}" -ge 4 ]; then + varname="${prev,,}" + else + varname="$(echo "$prev" |tr A-Z a-z)" + fi + + case "$varname" in branch.*.remote|branch.*.pushremote) __gitcomp_nl "$(__git_remotes)" return