Felipe Contreras <felipe.contreras@xxxxxxxxx> writes: > +# this is NOT a public function; use at your own risk > +__git_complete () The comment is enough to scare away people who might use it and then come back to complain when this changes its implementation detail, but saying "This is not X" without saying "This does Y" does not help those who want to contribute updates to git-completion script. Is there a short and sweet description of what this is for and/or what this does? > +{ > + local name="${2-$1}" > + local wrapper="_${name}_wrap" > + eval "$wrapper () { __git_func_wrap $name ; }" > + complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \ > + || complete -o default -o nospace -F $wrapper $1 > +} > + > +__git_complete git > +__git_complete gitk > > # The following are necessary only for Cygwin, and only are needed > # when the user has tab-completed the executable name and consequently > # included the '.exe' suffix. > # > if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then > -complete -o bashdefault -o default -o nospace -F _git git.exe 2>/dev/null \ > - || complete -o default -o nospace -F _git git.exe > +__git_complete git.exe git > fi > diff --git a/t/t9902-completion.sh b/t/t9902-completion.sh > index 5bda6b6..331a5b9 100755 > --- a/t/t9902-completion.sh > +++ b/t/t9902-completion.sh > @@ -63,7 +63,7 @@ run_completion () > local _cword > _words=( $1 ) > (( _cword = ${#_words[@]} - 1 )) > - _git && print_comp > + _git_wrap && print_comp > } > > test_completion () -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html