Fix #314 - quickfix should take precedence over loclist for jumping

This commit is contained in:
w0rp
2017-02-21 12:51:49 +00:00
parent c310080359
commit 6a02c5812c
2 changed files with 15 additions and 3 deletions

View File

@@ -6,10 +6,10 @@ function! s:GetCurrentList() abort
let l:buffer = bufnr('%')
let l:list = []
if g:ale_set_loclist
let l:list = getloclist(winnr())
elseif g:ale_set_quickfix
if g:ale_set_quickfix
let l:list = getqflist()
elseif g:ale_set_loclist
let l:list = getloclist(winnr())
endif
return filter(l:list, 'get(v:val, ''bufnr'', -1) == ' . l:buffer)