diff options
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/ale/aaflags.vim | 2 | ||||
-rw-r--r-- | plugin/ale/zmain.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugin/ale/aaflags.vim b/plugin/ale/aaflags.vim index 75accc9e..f0c0bb7c 100644 --- a/plugin/ale/aaflags.vim +++ b/plugin/ale/aaflags.vim @@ -15,7 +15,7 @@ let g:ale_lint_on_text_changed = get(g:, 'ale_lint_on_text_changed', 1) " execution of a linter when text is changed. The timeout will be set and " cleared each time text is changed, so repeated edits won't trigger the " jobs for linting until enough time has passed after editing is done. -let g:ale_lint_delay = get(g:, 'ale_lint_delay', 100) +let g:ale_lint_delay = get(g:, 'ale_lint_delay', 200) " This flag can be set to 0 to disable linting when the buffer is entered. let g:ale_lint_on_enter = get(g:, 'ale_lint_on_enter', 1) diff --git a/plugin/ale/zmain.vim b/plugin/ale/zmain.vim index 00a6648a..1307d696 100644 --- a/plugin/ale/zmain.vim +++ b/plugin/ale/zmain.vim @@ -350,7 +350,7 @@ endif if g:ale_lint_on_enter augroup ALERunOnEnterGroup autocmd! - autocmd BufEnter * call ALELint(0) + autocmd BufEnter * call ALELint(10) augroup END endif |