1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-22 08:45:42 +08:00

Add swapqf func

This commit is contained in:
wsdjeg 2017-10-27 13:00:12 +08:00
parent 527d7e1623
commit 377bfb81d8

View File

@ -94,3 +94,8 @@ function! s:update_stack() abort
call add(s:filestack, file) call add(s:filestack, file)
endfor endfor
endfunction endfunction
function! SpaceVim#plugins#quickfix#swapqf()
call SpaceVim#plugins#quickfix#setqflist(getqflist())
call SpaceVim#plugins#quickfix#openwin()
endfunction