aboutsummaryrefslogtreecommitdiffstats
path: root/misc/bash_completion
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-09-17 14:36:51 +0200
committerMichael Muré <batolettre@gmail.com>2018-09-17 14:36:51 +0200
commit5eaf9e83e7cd56b8bb4915193d13adfb60575b21 (patch)
tree52fe0727ea445cf3d7fbfa64e916b09f6009f0ef /misc/bash_completion
parent2965b70f4f462b3532bb380c5206e2d940f68c65 (diff)
downloadgit-bug-5eaf9e83e7cd56b8bb4915193d13adfb60575b21.tar.gz
commands: add a "label rm" command to remove labels from a bug
Diffstat (limited to 'misc/bash_completion')
-rw-r--r--misc/bash_completion/git-bug21
1 files changed, 21 insertions, 0 deletions
diff --git a/misc/bash_completion/git-bug b/misc/bash_completion/git-bug
index 7283ad2a..d0613dc7 100644
--- a/misc/bash_completion/git-bug
+++ b/misc/bash_completion/git-bug
@@ -367,6 +367,26 @@ _git-bug_label_add()
noun_aliases=()
}
+_git-bug_label_rm()
+{
+ last_command="git-bug_label_rm"
+
+ 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"
@@ -375,6 +395,7 @@ _git-bug_label()
commands=()
commands+=("add")
+ commands+=("rm")
flags=()
two_word_flags=()