diff options
author | Eric Wang <ericwang@tuta.io> | 2019-06-27 19:25:06 -0700 |
---|---|---|
committer | Eric Wang <ericwang@tuta.io> | 2019-06-27 19:25:06 -0700 |
commit | 6feeca793ad7df7e947defac7a9c0f8b70972a0f (patch) | |
tree | 23bcdc65cbb8fa9711522fa949015511a55cb69d | |
parent | 65ba4b85ec3011cccb9ea7135183e7fc8d7a0d69 (diff) | |
download | ale-6feeca793ad7df7e947defac7a9c0f8b70972a0f.zip |
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.
-rw-r--r-- | README.md | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |