Completion for git submodule only handled subcommands. Add support for options of each subcommand Signed-off-by: Nicolas Morey-Chaisemartin <nicolas@xxxxxxxxxxxxxxxxxxxxxx> --- Changes: - Inlined local variables listing options. contrib/completion/git-completion.bash | 32 +++++++++++++++++++++++++++++++- 1 files changed, 31 insertions(+), 1 deletions(-) diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 840ae38..20d0cf0 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -2546,7 +2546,8 @@ _git_submodule () __git_has_doubledash && return local subcommands="add status init update summary foreach sync" - if [ -z "$(__git_find_on_cmdline "$subcommands")" ]; then + local subcommand="$(__git_find_on_cmdline "$subcommands")" + if [ -z "$subcommand" ]; then local cur _get_comp_words_by_ref -n =: cur case "$cur" in @@ -2558,6 +2559,35 @@ _git_submodule () ;; esac return + else + local cur + _get_comp_words_by_ref -n =: cur + case "$subcommand,$cur" in + add,--*) + __gitcomp "--branch= --force --reference=" + ;; + status,--*) + __gitcomp "--cached --recursive" + ;; + update,--*) + __gitcomp "--init --no-fetch --rebase --reference= --merge --recursive" + ;; + summary,--*) + __gitcomp "--cached --files --summary-limit=" + ;; + summary,*) + __gitcomp "$(__git_refs)" + ;; + foreach,--*) + __gitcomp "--recursive" + ;; + sync,*) + COMPREPLY=() + ;; + *) + COMPREPLY=() + ;; + esac fi } -- 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