]> src.twobees.de Git - dotfiles.git/blob - stow/oh-my-zsh/.oh-my-zsh/plugins/jira/_jira
...
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / jira / _jira
1 #compdef jira
2 #autoload
3
4 local -a _1st_arguments
5 _1st_arguments=(
6   'new:create a new issue'
7   'dashboard:open the dashboard'
8   'tempo:open the tempo'
9   'reported:search for issues reported by a user'
10   'assigned:search for issues assigned to a user'
11   'branch:open the issue named after the git branch of the current directory'
12   'dumpconfig:display effective jira configuration'
13 )
14
15 _arguments -C \
16   ':command:->command' \
17   '*::options:->options'
18
19 case $state in
20   (command)
21     _describe -t commands "jira subcommand" _1st_arguments
22     return
23    ;;
24 esac