Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joker1007/vim-metarw-github-issues
vim-metarwを利用してgithub-issueを読み書きするプラグイン
https://github.com/joker1007/vim-metarw-github-issues
Last synced: 2 days ago
JSON representation
vim-metarwを利用してgithub-issueを読み書きするプラグイン
- Host: GitHub
- URL: https://github.com/joker1007/vim-metarw-github-issues
- Owner: joker1007
- Created: 2013-10-19T11:33:59.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-02T14:41:17.000Z (about 11 years ago)
- Last Synced: 2024-04-15T22:38:45.951Z (7 months ago)
- Language: VimL
- Homepage:
- Size: 104 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.mkd
Awesome Lists containing this project
README
# vim-metarw-github-issue
vim-metarwを利用してgithub-issueを読み書きするプラグイン
## Requirements
- vim-metarw
- webapi-vim
- curl## Format
1行目がタイトル
2行目がラベル4行目以降が本文のmarkdown
## Usage
### Write vimrc
```vim
let g:github_user='joker1007'
let g:github_token='xxxxxx' " API経由で取得しておく" Optional
let g:github_per_page=50 " Max 100
```### Post current buffer as new item
```
:write issues:repos/:owner/:repo
```Caution: Not modify comment separator, otherwise post issue body with comments
### Open a issue
```
:edit issues:repos/:owner/:repo/issues/:number
```### Update current open issue
```
:write
```Caution: Not modify comment separator, otherwise post issue body with comments
### Post new comment to current open issue
Open comment buffer
```
:IssueCommentPost
```and save
```
:write
```Caution: Existing issue buffer is not refreshed. Refresh Manually.
### Get issues for repository
```
:edit issues:repos/:owner/:repo
```### Get issues for organization
```
:edit issues:orgs/:org?filter=all
```### Open by browser
```
:IssueBrowse
```