1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-04-14 15:19:12 +08:00

Update issue.vim

This commit is contained in:
Wang Shidong 2017-11-27 08:57:51 +08:00 committed by GitHub
parent 3d1cbb4758
commit ae1860b0d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,7 @@ function! s:open() abort
w
endfunction
function! s:template() abort
let info = [
\ '<!-- please remove the issue template when request for a feature -->',
@ -23,7 +24,7 @@ function! s:template() abort
\ '',
\ '## Output of the `:SPDebugInfo!`',
\ '']
\ + split(execute(':SPDebugInfo'), "\n") +
\ + split(SpaceVim#api#import('vim#compatible').execute(':SPDebugInfo'), "\n") +
\ [
\ '## Screenshots',
\ '',
@ -31,3 +32,4 @@ function! s:template() abort
\ ]
return info
endfunction