We don't match the prefix, we shouldn't match the suffix either.
There are no functional changes since all the callers that add a suffix
add an =, and if $cur_ ended with that suffix, we would return
immediately.
Signed-off-by: Felipe Contreras <redacted>
---
contrib/completion/git-completion.bash | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash
index ebf8df94e8..e7308b212f 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -346,8 +346,8 @@ __gitcomp ()
fi
break
fi
- c="$c${4-}"
if [[ $c == "$cur_"* ]]; then
+ c="$c${4-}"
case $c in
*=|*.) ;;
*) c="$c " ;;--
2.32.0