diff options
author | Michael Muré <batolettre@gmail.com> | 2019-02-26 22:25:52 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-03-01 22:52:54 +0100 |
commit | bad05a4f3d24eb092724f667ee33bb1956457dd3 (patch) | |
tree | ebffb166f1a9f63d56459b0ffee7c3a09ae1042f /misc/zsh_completion | |
parent | c235d89d36500e58e3bcadda94e9cab06023dd55 (diff) | |
download | git-bug-bad05a4f3d24eb092724f667ee33bb1956457dd3.tar.gz |
cache: better API to access excerpts
Diffstat (limited to 'misc/zsh_completion')
-rw-r--r-- | misc/zsh_completion/git-bug | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/misc/zsh_completion/git-bug b/misc/zsh_completion/git-bug index 9f7e84dc..232cd3c1 100644 --- a/misc/zsh_completion/git-bug +++ b/misc/zsh_completion/git-bug @@ -17,15 +17,6 @@ case $state in ;; level2) case $words[2] in - status) - _arguments '2: :(close open)' - ;; - title) - _arguments '2: :(edit)' - ;; - user) - _arguments '2: :(adopt create ls)' - ;; bridge) _arguments '2: :(configure pull rm)' ;; @@ -35,6 +26,15 @@ case $state in label) _arguments '2: :(add rm)' ;; + status) + _arguments '2: :(close open)' + ;; + title) + _arguments '2: :(edit)' + ;; + user) + _arguments '2: :(adopt create ls)' + ;; *) _arguments '*: :_files' ;; |