diff --git a/plugin/ale/cursor.vim b/plugin/ale/cursor.vim index 0159302..9987266 100644 --- a/plugin/ale/cursor.vim +++ b/plugin/ale/cursor.vim @@ -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]) diff --git a/plugin/ale/sign.vim b/plugin/ale/sign.vim index 2975301..7eb858b 100644 --- a/plugin/ale/sign.vim +++ b/plugin/ale/sign.vim @@ -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]