Revert the changes on zsh_completion/git-bug

Yang Zhang created

Change summary

misc/zsh_completion/git-bug | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

Detailed changes

misc/zsh_completion/git-bug 🔗

@@ -17,12 +17,6 @@ case $state in
   ;;
   level2)
     case $words[2] in
-      status)
-        _arguments '2: :(close open)'
-      ;;
-      title)
-        _arguments '2: :(edit)'
-      ;;
       bridge)
         _arguments '2: :(configure pull rm)'
       ;;
@@ -32,6 +26,12 @@ case $state in
       label)
         _arguments '2: :(add rm)'
       ;;
+      status)
+        _arguments '2: :(close open)'
+      ;;
+      title)
+        _arguments '2: :(edit)'
+      ;;
       *)
         _arguments '*: :_files'
       ;;