diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index e0dbccbd..b87ae729 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.6.0-62' +let g:_SYNTASTIC_VERSION = '3.6.0-63' lockvar g:_SYNTASTIC_VERSION " Sanity checks {{{1 diff --git a/syntax_checkers/rst/rst2pseudoxml.vim b/syntax_checkers/rst/rst2pseudoxml.vim index fb851fd2..d3918bf7 100644 --- a/syntax_checkers/rst/rst2pseudoxml.vim +++ b/syntax_checkers/rst/rst2pseudoxml.vim @@ -18,7 +18,7 @@ if exists("g:loaded_syntastic_rst_rst2pseudoxml_checker") endif let g:loaded_syntastic_rst_rst2pseudoxml_checker = 1 -let s:rst2pseudoxml = executable('rst2pseudoxml.py') ? 'rst2pseudoxml.py' : 'rst2pseudoxml' +let s:rst2pseudoxml = (executable('rst2pseudoxml.py') && !syntastic#util#isRunningWindows()) ? 'rst2pseudoxml.py' : 'rst2pseudoxml' let s:save_cpo = &cpo set cpo&vim