Fix bugs with directory listings and signs when switching tabs.

This commit is contained in:
w0rp 2016-09-09 22:48:40 +01:00
parent faf51d7a22
commit 33b5e30760
2 changed files with 7 additions and 1 deletions

View File

@ -53,6 +53,10 @@ function! ale#cursor#TruncatedEcho(message)
endfunction
function! ale#cursor#EchoCursorWarning()
if !exists('b:ale_loclist')
return
endif
let pos = getcurpos()
let index = s:BinarySearch(b:ale_loclist, pos[1], pos[2])

View File

@ -26,7 +26,9 @@ sign define ALEWarningSign text=-- texthl=ALEWarningSign
" This function will set the signs which show up on the left.
function! ale#sign#SetSigns(loclist)
sign unplace *
let buffer = bufnr('%')
exec 'sign unplace * buffer=' . buffer
for i in range(0, len(a:loclist) - 1)
let obj = a:loclist[i]