aboutsummaryrefslogtreecommitdiffstats
path: root/doc/zsh_completion
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-08-06 03:22:36 +0200
committerMichael Muré <batolettre@gmail.com>2018-08-06 03:26:42 +0200
commit26e7ce44db91f3b08fa5d1b32690348d40c1fb00 (patch)
treed42e357dfd83453d284f861dccdadfde54eef54e /doc/zsh_completion
parentb2f20c9a61715b0a60f9e55688dbed221d775c7e (diff)
downloadgit-bug-26e7ce44db91f3b08fa5d1b32690348d40c1fb00.tar.gz
upgrade the readme
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