From 5dbf73b29fd9f99ef725eb764e6a9b609f8e4de5 Mon Sep 17 00:00:00 2001 From: ayanamist Date: Tue, 17 Dec 2013 16:10:32 +0800 Subject: [PATCH] Fix: __git_complete_remote_or_refspec:35: bad pattern: +* --- plugins/gitfast/git-completion.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/gitfast/git-completion.bash b/plugins/gitfast/git-completion.bash index 93eba4675..d9a2f2500 100644 --- a/plugins/gitfast/git-completion.bash +++ b/plugins/gitfast/git-completion.bash @@ -643,8 +643,8 @@ __git_complete_remote_or_refspec () cur_="${cur_#*:}" lhs=0 ;; - +*) - pfx="+" + *) + pfx="" cur_="${cur_#+}" ;; esac