diff options
author | w0rp <devw0rp@gmail.com> | 2016-10-30 09:29:11 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2016-10-30 09:29:11 +0000 |
commit | a6ca60203f74bd84122656d4a91db9490e52a732 (patch) | |
tree | de377cb2f22145b595af1b626b076d28cf4973df /plugin | |
parent | 629e6a367500e372a5c60ff384859430ea08e386 (diff) | |
download | ale-a6ca60203f74bd84122656d4a91db9490e52a732.zip |
Increase the delay for linting on entering a buffer.
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/ale.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim index 43f38927..20adae63 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 |