From f8cf3fea035d7f0ad0287166c3a5016777acf5ad Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sun, 10 Nov 2019 15:50:56 +0100 Subject: cli: add bridge token show --- 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 28924d1c..e8126b8f 100644 --- a/misc/bash_completion/git-bug +++ b/misc/bash_completion/git-bug @@ -444,6 +444,26 @@ _git-bug_bridge_token_rm() noun_aliases=() } +_git-bug_bridge_token_show() +{ + last_command="git-bug_bridge_token_show" + + 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_bridge_token() { last_command="git-bug_bridge_token" @@ -453,6 +473,7 @@ _git-bug_bridge_token() commands=() commands+=("add") commands+=("rm") + commands+=("show") flags=() two_word_flags=() -- cgit