diff --git a/doc/syntastic.txt b/doc/syntastic.txt index ade66eaf..79774370 100644 --- a/doc/syntastic.txt +++ b/doc/syntastic.txt @@ -158,6 +158,11 @@ Something like this could be more useful: > When syntax errors are detected a flag will be shown. The content of the flag is derived from the |syntastic_stl_format| option. +Please note that these settings might conflict with other Vim plugins that +change the way statusline works. Refer to these plugins' documentation for +possible solutions. See also |syntastic-powerline| below if you're using the +"powerline" Vim plugin (https://github.com/powerline/powerline). + ------------------------------------------------------------------------------ 2.2. Error signs *syntastic-error-signs* diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 09ce418d..bb9765c1 100644 --- a/plugin/syntastic.vim +++ b/plugin/syntastic.vim @@ -19,7 +19,7 @@ if has('reltime') lockvar! g:_SYNTASTIC_START endif -let g:_SYNTASTIC_VERSION = '3.7.0-81' +let g:_SYNTASTIC_VERSION = '3.7.0-82' lockvar g:_SYNTASTIC_VERSION " Sanity checks {{{1