From: Shawn O. Pearce Date: Sun, 13 Jul 2008 22:06:31 +0000 (+0000) Subject: bash completion: Don't offer "a.." as a completion for "a." X-Git-Tag: v1.5.6.4~9^2~2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=6c36c9e4eabadecf75f8751b1c1140da2068e2a0;p=git.git bash completion: Don't offer "a.." as a completion for "a." If the user is trying to complete "v1.5.3." to see all of the available maintenance releases for 1.5.3 we should not give them an extra dot as the completion. Instead if the user wants a ".." or a "..." operator they should key the two dots out on their own. Its the same number of keystrokes either way. Signed-off-by: Shawn O. Pearce Signed-off-by: Junio C Hamano --- diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 0734ea313..821c9a7f9 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -324,9 +324,6 @@ __git_complete_revlist () cur="${cur#*..}" __gitcomp "$(__git_refs)" "$pfx" "$cur" ;; - *.) - __gitcomp "$cur." - ;; *) __gitcomp "$(__git_refs)" ;;