1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 05:30:07 +08:00

Add title support

This commit is contained in:
wsdjeg 2017-10-28 12:43:38 +08:00
parent 83dd1d9804
commit ff46b8cd23

View File

@ -1,10 +1,30 @@
let s:qflist = []
let s:qf_title = ''
let s:filestack = []
" like setqflist()
function! SpaceVim#plugins#quickfix#setqflist(list, ...)
let s:qflist = a:list
let action = get(a:000, 0, ' ')
if action ==# 'a'
call extend(s:qflist, a:list)
elseif action ==# 'r'
let s:qflist = a:list
elseif empty(action)
let s:qflist = a:list
else
echohl Error
echo 'wrong args for SpaceVim setqflist'
echohl NONE
endif
let what = get(a:000, 1, {})
if has_key(what, 'title')
let s:qf_title = what.title
endif
endfunction