From 2b84b14cd1ef0d4bb74d91ca08a8818d84d8982d Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Mon, 12 Sep 2016 22:20:00 +0300 Subject: [PATCH] Manual: add a note about "signcolumn". --- doc/syntastic.txt | 4 ++++ plugin/syntastic.vim | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/doc/syntastic.txt b/doc/syntastic.txt index c85eb9b3..8f3473bc 100644 --- a/doc/syntastic.txt +++ b/doc/syntastic.txt @@ -202,6 +202,10 @@ following highlight groups: Example: > highlight SyntasticErrorLine guibg=#2f0000 < +With Vim 8.0 or later you can ask Vim not to turn off the sign column when no +errors are found, by setting 'signcolumn' to "yes": > + set signcolumn=yes +< ------------------------------------------------------------------------------ 2.3. The error window *syntastic-error-window* diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 3b7a1714..9e282675 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-223' +let g:_SYNTASTIC_VERSION = '3.7.0-224' lockvar g:_SYNTASTIC_VERSION " Sanity checks {{{1