> Jeff King <p...@peff.net> hat am 1. Juni 2016 um 06:07 geschrieben:
> 
> 
> On Wed, Jun 01, 2016 at 01:42:18AM +0200, Thomas Braun wrote:
> 
> > Signed-off-by: Thomas Braun <thomas.br...@virtuell-zuhause.de>
> > ---
> >  contrib/completion/git-completion.bash | 29 +++++++++++++++++++++++++++++
> >  1 file changed, 29 insertions(+)
> > 
> > diff --git a/contrib/completion/git-completion.bash
> > b/contrib/completion/git-completion.bash
> > index 57a0acc..96b7d86 100644
> > --- a/contrib/completion/git-completion.bash
> > +++ b/contrib/completion/git-completion.bash
> > @@ -1782,6 +1782,35 @@ _git_stage ()
> >     _git_add
> >  }
> >  +_git_status ()
> 
> This patch has the same funniness as the other. Weird.

Should be fixed now.

> > +{
> > +   case "$cur" in
> > +   --ignore-submodules=*)
> > +           __gitcomp "none untracked dirty all" "" 
> > "${cur##--ignore-submodules=}"
> > +           return
> > +           ;;
> > +   --untracked-files=*)
> > +           __gitcomp "$(__git_untracked_file_modes)" "" 
> > "${cur##--untracked-files=}"
> 
> Same comment on $() here.

Fixed.

> > +           return
> > +           ;;
> > +   --column=*)
> > +           __gitcomp "
> > +                   always never auto column row plain dense nodense
> > +                   " "" "${cur##--column=}"
> > +           return
> > +           ;;
> > +   --*)
> > +           __gitcomp "
> > +                   --short --branch --porcelain --long --verbose
> > +                   --untracked-files= --ignore-submodules= --ignored
> > +                   --column= --no-column
> > +                   "
> > +           return
> > +           ;;
> > +   esac
> > +   __git_complete_file
> > +}
> 
> The rest of it (both the overall goal, and the patch itself) look OK to
> me.

Thanks,
Thomas

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to