From a6ca60203f74bd84122656d4a91db9490e52a732 Mon Sep 17 00:00:00 2001 From: w0rp Date: Sun, 30 Oct 2016 09:29:11 +0000 Subject: [PATCH] Increase the delay for linting on entering a buffer. --- plugin/ale.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/ale.vim b/plugin/ale.vim index 43f3892..20adae6 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -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