Check the active_linter_list only for running linters

This commit is contained in:
w0rp 2017-07-26 10:44:27 +01:00
parent cfdb41f4d2
commit fbf59fd4ce
1 changed files with 1 additions and 2 deletions

View File

@ -52,8 +52,7 @@ endfunction
function! ale#engine#IsCheckingBuffer(buffer) abort
let l:info = get(g:ale_buffer_info, a:buffer, {})
return get(l:info, 'waiting_for_tsserver') == 1
\|| !empty(get(l:info, 'job_list'))
return !empty(get(l:info, 'active_linter_list', []))
endfunction
" Register a temporary file to be managed with the ALE engine for