aboutsummaryrefslogtreecommitdiffstats
path: root/doc/zsh_completion
diff options
context:
space:
mode:
Diffstat (limited to 'doc/zsh_completion')
-rw-r--r--doc/zsh_completion/git-bug20
1 files changed, 0 insertions, 20 deletions
diff --git a/doc/zsh_completion/git-bug b/doc/zsh_completion/git-bug
deleted file mode 100644
index dcd83163..00000000
--- a/doc/zsh_completion/git-bug
+++ /dev/null
@@ -1,20 +0,0 @@
-#compdef git-bug
-
-_arguments \
- '1: :->level1' \
- '2: :_files'
-case $state in
- level1)
- case $words[1] in
- git-bug)
- _arguments '1: :(close commands comment label ls new open pull push show termui webui)'
- ;;
- *)
- _arguments '*: :_files'
- ;;
- esac
- ;;
- *)
- _arguments '*: :_files'
- ;;
-esac