From 6feeca793ad7df7e947defac7a9c0f8b70972a0f Mon Sep 17 00:00:00 2001 From: Eric Wang Date: Thu, 27 Jun 2019 19:25:06 -0700 Subject: [PATCH] Update README section about running linters on save The default for `g:ale_lint_on_insert_leave` was recently changed to 1, so it now needs to be explicitly set to 0 to run linters only when files are saved. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 91f0c3ea..fc7ac874 100644 --- a/README.md +++ b/README.md @@ -596,6 +596,7 @@ options off. ```vim " Write this in your vimrc file let g:ale_lint_on_text_changed = 'never' +let g:ale_lint_on_insert_leave = 0 " You can disable this option too " if you don't want linters to run on opening a file let g:ale_lint_on_enter = 0