From ae5c0967cec40a7dcf9804ff592a4d15f1b26569 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Tue, 28 Jul 2020 20:24:24 +0200 Subject: commands: cleanup the command's usage to avoid warnings when generating the doc --- 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 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") -- cgit