1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-09 08:30: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 --> <!-- bug reporting without issue template will be closed automatically -->
## Expected behavior, english is recommended
## Expected behavior, english is required
## Environment Information
- OS:
- vim version:
- neovim version:
## The reproduce ways from Vim starting (Required!) ## The reproduce ways from Vim starting (Required!)
## Debug info
## Output of the ':SPDebugInfo!' Please press <kbd>SPC h I</kbd>, debug info will be put into clipboard, then paste all content below.
please post log below, if you want me to reproduce your issue quickly, including your custom config here will be better.
## Screenshots ## Screenshots
If you have any screenshots for this issue, please upload here. BTW you can use https://asciinema.org/ for recording video in terminal. 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 function! s:open() abort
exe 'tabnew ' . tempname() . '/issue_report.md' exe 'tabnew ' . tempname() . '/issue_report.md'
let b:spacevim_issue_template = 1 let b:spacevim_issue_template = 1
call setline(1, s:template()) let template = s:template()
call setline(1, template)
let @+ = join(template, "\n")
w w
endfunction endfunction