From c1479f980e748bbdfca5c776037c61dba74e5f4a Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Sun, 20 Jul 2014 21:32:29 +0300 Subject: [PATCH] Set default reuse_loc_lists to 0. Recent Vim versions have a bug related to setloclist(0, list, 'r'): https://groups.google.com/forum/#!topic/vim_dev/t4ei24iwkiY Avoid replacing loclists until the problem is solved. --- plugin/syntastic.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 028c3203..1bca0af6 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.4.0-110' +let g:syntastic_version = '3.4.0-111' lockvar g:syntastic_version " Sanity checks {{{1 @@ -69,7 +69,7 @@ let g:syntastic_defaults = { \ 'ignore_files': [], \ 'loc_list_height': 10, \ 'quiet_messages': {}, - \ 'reuse_loc_lists': (v:version >= 704), + \ 'reuse_loc_lists': 0, \ 'sort_aggregated_errors': 1, \ 'stl_format': '[Syntax: line:%F (%t)]', \ 'style_error_symbol': 'S>',