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])