mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 02:20:04 +08:00
82 lines
2.6 KiB
VimL
82 lines
2.6 KiB
VimL
"=============================================================================
|
|
" issue.vim --- issue reporter for SpaceVim
|
|
" Copyright (c) 2016-2017 Wang Shidong & Contributors
|
|
" Author: Wang Shidong < wsdjeg at 163.com >
|
|
" URL: https://spacevim.org
|
|
" License: GPLv3
|
|
"=============================================================================
|
|
|
|
let s:CMP = SpaceVim#api#import('vim#compatible')
|
|
|
|
function! SpaceVim#issue#report() abort
|
|
call s:open()
|
|
endfunction
|
|
|
|
function! s:open() abort
|
|
exe 'tabnew ' . tempname() . '/issue_report.md'
|
|
let b:spacevim_issue_template = 1
|
|
let template = s:template()
|
|
call setline(1, template)
|
|
let @+ = join(template, "\n")
|
|
w
|
|
endfunction
|
|
|
|
function! s:spacevim_status() abort
|
|
let pwd = getcwd()
|
|
exe 'cd ' . fnamemodify(g:_spacevim_root_dir, ':p:h:h')
|
|
let status = system('git status')
|
|
exe 'cd ' . pwd
|
|
return split(status, "\n")
|
|
endfunction
|
|
|
|
function! s:template() abort
|
|
let info = [
|
|
\ '<!-- please remove the issue template when request for a feature -->',
|
|
\ '## Expected behavior, english is recommend',
|
|
\ '',
|
|
\ '## Environment Information',
|
|
\ '',
|
|
\ '- OS: ' . SpaceVim#api#import('system').name(),
|
|
\ '- vim version: ' . (has('nvim') ? '-' : s:CMP.version()),
|
|
\ '- neovim version: ' . (has('nvim') ? s:CMP.version() : '-'),
|
|
\ '- SpaceVim version: ' . g:spacevim_version,
|
|
\ '- SpaceVim status: ',
|
|
\ '',
|
|
\ '```'
|
|
\ ]
|
|
\ + s:spacevim_status() +
|
|
\ [
|
|
\ '```',
|
|
\ '',
|
|
\ '## The reproduce ways from Vim starting (Required!)',
|
|
\ '',
|
|
\ '## Output of the `:SPDebugInfo!`',
|
|
\ '']
|
|
\ + split(SpaceVim#api#import('vim#compatible').execute(':SPDebugInfo'), "\n") +
|
|
\ [
|
|
\ '## Screenshots',
|
|
\ '',
|
|
\ 'If you have any screenshots for this issue please upload here. BTW you can use https://asciinema.org/ for recording video in terminal.'
|
|
\ ]
|
|
return info
|
|
endfunction
|
|
|
|
|
|
|
|
function! SpaceVim#issue#new() abort
|
|
if get(b:, 'spacevim_issue_template', 0) == 1
|
|
let title = input('Issue title:')
|
|
let username = input('github username:')
|
|
let password = input('github password:')
|
|
let issue = {'title' : title,
|
|
\ 'body' : join(getline(1, '$'), "\n"),
|
|
\ }
|
|
let response = github#api#issues#Create('SpaceVim', 'SpaceVim', username, password, issue)
|
|
if has_key(response, 'html_url')
|
|
echo 'Issue created done: ' . response.html_url
|
|
else
|
|
echo 'Failed to create issue, please check the username and password'
|
|
endif
|
|
endif
|
|
endfunction
|