1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-02 22:50:06 +08:00
This commit is contained in:
wsdjeg 2018-02-22 10:17:41 +08:00 committed by Wang Shidong
parent 1f5082bb9f
commit a4b423a2eb
2 changed files with 8 additions and 11 deletions

View File

@ -1,20 +1,15 @@
<!-- please remove the issue template when request for a feature -->
## Expected behavior, english is recommended
<!-- bug reporting without issue template will be closed automatically -->
## Environment Information
- OS:
- vim version:
- neovim version:
## Expected behavior, english is required
## The reproduce ways from Vim starting (Required!)
## Debug info
## Output of the ':SPDebugInfo!'
please post log below, if you want me to reproduce your issue quickly, including your custom config here will be better.
Please press <kbd>SPC h I</kbd>, debug info will be put into clipboard, then paste all content below.
## Screenshots
If you have any screenshots for this issue, please upload here. BTW you can use https://asciinema.org/ for recording video in terminal.
<!-- please remove the issue template when request for a feature -->

View File

@ -15,7 +15,9 @@ endfunction
function! s:open() abort
exe 'tabnew ' . tempname() . '/issue_report.md'
let b:spacevim_issue_template = 1
call setline(1, s:template())
let template = s:template()
call setline(1, template)
let @+ = join(template, "\n")
w
endfunction