From cea232194d4da32696df26f9b5ad00d5624621db Mon Sep 17 00:00:00 2001 From: Fabian Wermelinger Date: Fri, 18 Jun 2021 16:02:57 +0200 Subject: completion: bash: fix late declaration of __git_cmd_idx A recent update to contrib/completion/git-completion.bash causes bash to fail auto complete custom commands that are wrapped with __git_func_wrap. Declaring __git_cmd_idx=0 inside __git_func_wrap resolves the issue. Signed-off-by: Fabian Wermelinger Signed-off-by: Junio C Hamano diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 7bce9a0..7b1bbb9 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -3506,6 +3506,7 @@ fi __git_func_wrap () { local cur words cword prev + local __git_cmd_idx=0 _get_comp_words_by_ref -n =: cur words cword prev $1 } -- cgit v0.10.2-6-g49f6