Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toritori0318/vim-redmine
Redmine operation from vim
https://github.com/toritori0318/vim-redmine
Last synced: 3 days ago
JSON representation
Redmine operation from vim
- Host: GitHub
- URL: https://github.com/toritori0318/vim-redmine
- Owner: toritori0318
- Created: 2010-08-29T15:16:38.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-06-24T15:52:18.000Z (over 12 years ago)
- Last Synced: 2024-12-27T12:42:18.567Z (about 2 months ago)
- Language: VimL
- Homepage: http://d.hatena.ne.jp/toritori0318/
- Size: 119 KB
- Stars: 41
- Watchers: 6
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Introduction
=============You can look over the information on redmine with vim.
Function
=============1. Display ticket and display outline of ticket on Redmine with vim.
2. It is possible to jump to URL of the ticket.Requirement
=============1. webapi.vim
2. Redmine version >= 1.0.x
3. enable Redmine REST APIinstallation
=============1. Install webapi.vim
2. edit ~/.vimrc
let g:redmine_auth_site = 'http://localhost:3000'
let g:redmine_auth_key = 'secret'
let g:redmine_author_id = '5'
let g:redmine_project_id = '1'Command
========* RedmineViewTicket
a ticket is displayed.* RedmineViewAllTicket
All tickets are displayed.* RedmineViewAssignedTicket
Assigned ticket is displayed. (required g:redmine_author_id)* RedmineViewAssignedProjectTicket
Assigned ticket is displayed. (required g:redmine_author_id)
You can also specify Project_id.* RedmineViewMyTicket
Report ticket is displayed. (required g:redmine_author_id)* RedmineViewMyProjectTicket
Report ticket is displayed. (required g:redmine_author_id)
You can also specify Project_id.* RedmineSearchTicket
Search tickets.* RedmineSearchProject
Search project.* RedmineEditTicket
Edit Ticket.* RedmineAddTicket
Add Ticket.* RedmineAddTicketWithDiscription
Add Ticket with discription.Global Variable
========* redmine_auth_site
Redmine URL* redmine_auth_key
Redmine API Key* redmine_browser
Launch browser* redmine_author_id
Assigned_id used in RedmineViewMyTicket/RedmineViewMyProjectTicket.* redmine_project_id
used in RedmineViewMyProjectTicket.
This is not required. "MyProject" will be retrieved automatically if you don't specify project_id.* redmine_project_id_remember
If this variable is 1, remember projectId when add ticket.
This is not required, default value is 1.* redmine_temporary_dir
Set temp directory.
This is not required, default value is $HOME/.redmine-vim/ChangeLog
========
2012-06-24 by kawaken
- add RedmineViewAssignedTicket and RedmineViewAssignedProjectTicket2012-05-06 by vsushkov
- fix support new webapi2012-02-19 by kakkyz (@kakkyz81)
- fix multibyte character problem
- Add RedmineAddTicket and RedmineAddTicketWithDiscription