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 00a78039b8..1f0728ae52 100644
--- a/contrib/completion/git-completion.bash
+++ b/contrib/completion/git-completion.bash
@@ -337,8 +337,8 @@ __gitcomp ()
fi
break
fi
- c="$c${4-}"
if [[ $c == "$cur_"* ]]; then
+ c="$c${4-}"
case $c in
*=|*.) ;;
*) c="$c " ;;--
2.30.0