diff options
Diffstat (limited to 'misc/zsh_completion')
-rw-r--r-- | misc/zsh_completion/git-bug | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/misc/zsh_completion/git-bug b/misc/zsh_completion/git-bug index 077fa181..78f835ce 100644 --- a/misc/zsh_completion/git-bug +++ b/misc/zsh_completion/git-bug @@ -8,7 +8,7 @@ case $state in level1) case $words[1] in git-bug) - _arguments '1: :(add commands comment label ls ls-label pull push select show status termui title webui)' + _arguments '1: :(add bridge commands comment label ls ls-label pull push select show status termui title webui)' ;; *) _arguments '*: :_files' @@ -17,6 +17,9 @@ case $state in ;; level2) case $words[2] in + bridge) + _arguments '2: :(configure)' + ;; comment) _arguments '2: :(add)' ;; |