summaryrefslogtreecommitdiff
path: root/plugin/ale.vim
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-03-27 20:36:35 +0100
committerw0rp <devw0rp@gmail.com>2017-03-27 20:36:35 +0100
commitc9ee3efc1111d0de61e22d1c4cd6c1a49d5ae74a (patch)
tree88d1b600d8631c6b7e833b863776c71c5d8f4418 /plugin/ale.vim
parent4abefc189c04c70972a398254675f7ec93a8eba0 (diff)
downloadale-c9ee3efc1111d0de61e22d1c4cd6c1a49d5ae74a.zip
Enabling linting on save by default, re #333
Diffstat (limited to 'plugin/ale.vim')
-rw-r--r--plugin/ale.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim
index 3033fd5c..2e593893 100644
--- a/plugin/ale.vim
+++ b/plugin/ale.vim
@@ -76,7 +76,7 @@ let g:ale_lint_on_text_changed = get(g:, 'ale_lint_on_text_changed', 1)
let g:ale_lint_on_enter = get(g:, 'ale_lint_on_enter', 1)
" This flag can be set to 1 to enable linting when a buffer is written.
-let g:ale_lint_on_save = get(g:, 'ale_lint_on_save', 0)
+let g:ale_lint_on_save = get(g:, 'ale_lint_on_save', 1)
" This flag may be set to 0 to disable ale. After ale is loaded, :ALEToggle
" should be used instead.