aboutsummaryrefslogtreecommitdiffstats
path: root/misc/zsh_completion
diff options
context:
space:
mode:
authoramine <hilalyamine@gmail.com>2019-10-24 20:16:51 +0200
committeramine <hilalyamine@gmail.com>2019-11-09 13:26:52 +0100
commitbaefa687b582632cd9cc21b945bc074c833f5389 (patch)
treeae2d8a8e918409a0db7d6949177df3660745b09d /misc/zsh_completion
parent3984919a3df95b8ec203bcb82b66c9c2270579c7 (diff)
downloadgit-bug-baefa687b582632cd9cc21b945bc074c833f5389.tar.gz
tokens: use a hash as token identifier instead of the token it self
Diffstat (limited to 'misc/zsh_completion')
-rw-r--r--misc/zsh_completion/git-bug6
1 files changed, 3 insertions, 3 deletions
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
;;