X-Git-Url: https://src.twobees.de/?a=blobdiff_plain;f=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fjira%2F_jira;fp=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fjira%2F_jira;h=0000000000000000000000000000000000000000;hb=1a8e170bbe5c6641a26ab1ce2e6ce6c5c1faa4cd;hp=1ac3eeda32b38aa4cc559f2526d787bcc7c514a1;hpb=475ba35502579302593f4735c853c49ef1845dcb;p=dotfiles.git diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/jira/_jira b/stow/oh-my-zsh/.oh-my-zsh/plugins/jira/_jira deleted file mode 100644 index 1ac3eed..0000000 --- a/stow/oh-my-zsh/.oh-my-zsh/plugins/jira/_jira +++ /dev/null @@ -1,24 +0,0 @@ -#compdef jira -#autoload - -local -a _1st_arguments -_1st_arguments=( - 'new:create a new issue' - 'dashboard:open the dashboard' - 'tempo:open the tempo' - 'reported:search for issues reported by a user' - 'assigned:search for issues assigned to a user' - 'branch:open the issue named after the git branch of the current directory' - 'dumpconfig:display effective jira configuration' -) - -_arguments -C \ - ':command:->command' \ - '*::options:->options' - -case $state in - (command) - _describe -t commands "jira subcommand" _1st_arguments - return - ;; -esac