From baefa687b582632cd9cc21b945bc074c833f5389 Mon Sep 17 00:00:00 2001 From: amine Date: Thu, 24 Oct 2019 20:16:51 +0200 Subject: tokens: use a hash as token identifier instead of the token it self --- misc/zsh_completion/git-bug | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'misc/zsh_completion') diff --git a/misc/zsh_completion/git-bug b/misc/zsh_completion/git-bug index 1f4679ad..d9da4ac2 100644 --- a/misc/zsh_completion/git-bug +++ b/misc/zsh_completion/git-bug @@ -118,7 +118,7 @@ function _git-bug_bridge { "pull:Pull updates." "push:Push updates." "rm:Delete a configured bridge." - "token:Configure and use bridge tokens." + "token:List all stored tokens." ) _describe "command" commands ;; @@ -181,8 +181,8 @@ function _git-bug_bridge_token { case $state in cmnds) commands=( - "add:Configure and use bridge tokens." - "rm:Configure and use bridge tokens." + "add:Create and store a new token" + "rm:Remove token by Id." ) _describe "command" commands ;; -- cgit