Increase the delay for linting on entering a buffer.

This commit is contained in:
w0rp 2016-10-30 09:29:11 +00:00
parent 629e6a3675
commit a6ca60203f
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ let g:ale_lint_on_enter = get(g:, 'ale_lint_on_enter', 1)
if g:ale_lint_on_enter
augroup ALERunOnEnterGroup
autocmd!
call ALEAutoCMD('BufEnter,BufRead', 'ale#Queue(100)')
call ALEAutoCMD('BufEnter,BufRead', 'ale#Queue(300)')
augroup END
endif