Hi, On Thu, Dec 16, 2010 at 11:38:21PM -0800, Junio C Hamano wrote: > * pd/bash-4-completion (2010-12-15) 3 commits > - Merge branch 'master' (early part) into pd/bash-4-completion > - bash: simple reimplementation of _get_comp_words_by_ref > - bash: get --pretty=m<tab> completion to work with bash v4 > > Updated by Jonathan; this still has some conflicts around "notes" > completion I tried to resolve near the tip of 'pu'. The resolution of that conflict is not quite correct. I'm not sure how I should send a proper conflict resolution... but I'll try anyway. So the patch below applies to today's pu (i.e. db92f24) and fixes the current merge conflict resolution in the completion function for 'git notes'. I also have a few comments to the patches in this topic, but it's quite hard to find the time to think them through and sum them up properly in this pre-Xmas frenzy... Best, Gábor diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index bd5b322..e0c40c3 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1707,20 +1707,15 @@ _git_notes () { local subcommands='add append copy edit list prune remove show' local subcommand="$(__git_find_on_cmdline "$subcommands")" - local words cword - _get_comp_words_by_ref -n =: words cword - local cur=${words[cword-1]} - if [ -z "$subcommand" ]; then - __gitcomp "$subcommands" - return - fi + local cur words cword + _get_comp_words_by_ref -n =: cur words cword case "$subcommand,$cur" in ,--*) __gitcomp '--ref' ;; ,*) - case "${COMP_WORDS[COMP_CWORD-1]}" in + case "${words[cword-1]}" in --ref) __gitcomp "$(__git_refs)" ;; @@ -1748,7 +1743,7 @@ _git_notes () prune,*) ;; *) - case "${COMP_WORDS[COMP_CWORD-1]}" in + case "${words[cword-1]}" in -m|-F) ;; *) -- 1.7.3.4.547.g524288 -- 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