diff options
author | Michael Muré <batolettre@gmail.com> | 2020-07-28 20:24:24 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-07-28 20:24:24 +0200 |
commit | ae5c0967cec40a7dcf9804ff592a4d15f1b26569 (patch) | |
tree | 7c1ba7626fd8158be030876d44ba55daf465d694 /misc/bash_completion | |
parent | 51c887ff9dd4f2a5f65d2d3de57f8a7729b1010d (diff) | |
download | git-bug-ae5c0967cec40a7dcf9804ff592a4d15f1b26569.tar.gz |
commands: cleanup the command's usage to avoid warnings when generating the doc
Diffstat (limited to 'misc/bash_completion')
-rw-r--r-- | misc/bash_completion/git-bug | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/misc/bash_completion/git-bug b/misc/bash_completion/git-bug index 4152725f..8e2de8df 100644 --- a/misc/bash_completion/git-bug +++ b/misc/bash_completion/git-bug @@ -897,6 +897,26 @@ _git-bug_push() noun_aliases=() } +_git-bug_rm() +{ + last_command="git-bug_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_select() { last_command="git-bug_select" @@ -1239,6 +1259,7 @@ _git-bug_root_command() commands+=("ls-label") commands+=("pull") commands+=("push") + commands+=("rm") commands+=("select") commands+=("show") commands+=("status") |