diff options
author | taylorskalyo <taylorskalyo@users.noreply.github.com> | 2017-03-30 18:21:37 -0400 |
---|---|---|
committer | w0rp <w0rp@users.noreply.github.com> | 2017-03-30 23:21:37 +0100 |
commit | 36f9631512fe164ae115c4a216d3cddbf81e6daa (patch) | |
tree | 053e4741faeb285bf34d880a539c803f789f67ee /README.md | |
parent | 3a74d242f9b2b09dd066e5cfd6ed9a0149395b87 (diff) | |
download | ale-36f9631512fe164ae115c4a216d3cddbf81e6daa.zip |
Add options to facilitate linting only in normal mode (#425)
* [#420] Add options to facilitate linting only in normal mode
ale_lint_on_text_changed:
Allow setting to 'insert' or 'normal' to lint when text is changed only in
insert or normal mode respectively.
ale_lint_on_insert_leave:
This flag can be set to 1 to enable linting when leaving insert mode.
* [#420] Test updated global options
Ale should
- bind to TextChanged events when g:ale_lint_on_text_changed = 1
- bind to TextChanged events when g:ale_lint_on_text_changed = 'always'
- bind to InsertLeave event when g:ale_lint_on_insert_leave = 1
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -368,7 +368,7 @@ options off. ```vim " Write this in your vimrc file -let g:ale_lint_on_text_changed = 0 +let g:ale_lint_on_text_changed = 'never' " 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 @@ -453,10 +453,10 @@ type, and this delay can be increased so linters are run less often. See `:help g:ale_lint_delay` for more information. If you don't wish to run linters while you type, you can disable that -behaviour. Set `g:ale_lint_on_text_changed` to `0`. You won't get as frequent -error checking, but ALE shouldn't block your ability to edit a document after -you save a file, so the asynchronous nature of the plugin will still be an -advantage. +behaviour. Set `g:ale_lint_on_text_changed` to `never` or `normal`. You won't +get as frequent error checking, but ALE shouldn't block your ability to edit a +document after you save a file, so the asynchronous nature of the plugin will +still be an advantage. If you are still concerned, you can turn the automatic linting off altogether, including the option `g:ale_lint_on_enter`, and you can run ALE manually with |