All Projects → rafi → vim-unite-issue

rafi / vim-unite-issue

Licence: MIT license
Vim issue-manager, currently supports JIRA and GitHub. Colorful, clear, view issue & comments as Markdown, time-tracking, and (*) publish time-sheets and comments. [(*) = Planned]

Programming Languages

Vim Script
2826 projects

vim-unite-issue

Vim issue-manager. Browse, time-track, and view issues in Vim.

Features

  • Pure VimL
  • Multiple issue providers:
    • GitHub
    • JIRA
  • Time-tracking per issue
  • Browse issue list
  • View issue and comments as Markdown
  • Open issue in browser

Screenshot

vim-unite-issue screenshot

Planned Features

  • View time-sheets
  • Publish time-sheets
  • Comment reply
  • View milestones/sprints

Installation

Dependencies

Use your favorite plugin manager, mine is NeoBundle:

NeoBundleLazy 'rafi/vim-unite-issue', {
	\  'directory': 'unite-issue',
	\  'unite_sources': [ 'issue' ]
	\  'depends': [
	\    'mattn/webapi-vim', 'tyru/open-browser.vim', 'Shougo/unite.vim'
	\  ]
	\ }

Usage

Available actions for candidates:

  • view: View issue and comments as Markdown
  • browse: Open issue's URL in browser
  • start: Start time-tracking on a specific issue
  • stop: Stop issue timer and add a time-sheet entry

Providers

GitHub

:Unite issue:github[:owner/repository]
  • List all personal opened issues: :Unite issue:github
  • List repository issues: :Unite issue:github:torvalds/linux
Configuration
let g:github_token = '0123456789'

" Customize
let g:unite_source_issue_github_state_table = {
  \ 'open': 'O', 'closed': 'C' }

JIRA

:Unite issue:jira [-custom-issue-jql=]
  • List all personal unresolved issues: :Unite issue:jira
  • Custom JQL: :Unite issue:jira -custom-issue-jql=project=FOO\ and\ assignee=bar
Configuration
let g:jira_url = 'https://bugs.acme.com'
let g:jira_username = 'roadrunner'
let g:jira_password = 'meemeep'

" Customize
let g:unite_source_issue_jira_priority_table = {
  \ 10000: '', 1: '', 2: '', 3: '', 4: '', 5: '' }

let g:unite_source_issue_jira_status_table = {
  \ 1: 'plan', 3: 'develop', 4: 'reopened', 5: 'resolved', 6: 'closed',
  \ 10000: 'feedback', 10001: 'staged', 10002: 'waiting',
  \ 10003: 'deployed', 10004: 'pending', 10008: 'review' }

let g:unite_source_issue_jira_type_table = {
  \ 1: 'bug', 2: 'feature', 3: 'task', 4: 'change', 5: 'sub-task',
  \ 6: 'epic', 7: 'story', 8: 'system', 9: 'sub-bug' }

Credits & Contribution

I was inspired by joker1007/unite-pull-request and feeling annoyed by needing a browser to track and browse issues.

This plugin was developed by Rafael Bodill under the MIT License. Pull requests are welcome.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].