From 2965b70f4f462b3532bb380c5206e2d940f68c65 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Mon, 17 Sep 2018 14:33:34 +0200 Subject: commands: add a "label add" command to add new label to a bug --- misc/bash_completion/git-bug | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'misc/bash_completion') diff --git a/misc/bash_completion/git-bug b/misc/bash_completion/git-bug index 3e1ba26f..7283ad2a 100644 --- a/misc/bash_completion/git-bug +++ b/misc/bash_completion/git-bug @@ -347,6 +347,26 @@ _git-bug_comment() noun_aliases=() } +_git-bug_label_add() +{ + last_command="git-bug_label_add" + + command_aliases=() + + commands=() + + flags=() + two_word_flags=() + local_nonpersistent_flags=() + flags_with_completion=() + flags_completion=() + + + must_have_one_flag=() + must_have_one_noun=() + noun_aliases=() +} + _git-bug_label() { last_command="git-bug_label" @@ -354,6 +374,7 @@ _git-bug_label() command_aliases=() commands=() + commands+=("add") flags=() two_word_flags=() -- cgit