README: add a note about Python 3.

This commit is contained in:
LCD 47 2014-08-24 20:44:07 +03:00
parent 8e229e41a3
commit 4b7183b9dc
2 changed files with 11 additions and 1 deletions

View File

@ -127,6 +127,16 @@ error output for a syntax checker may have changed. In this case, make sure you
have the latest version of the syntax checker installed. If it still fails then
create an issue - or better yet, create a pull request.
<a name="faqpython3"></a>
__Q. The `python` checker complains about syntactically valid Python 3 constructs...__
A. Configure the `python` checker to calls a Python 3 interpreter rather than
Python 2, e.g:
```vim
let g:syntastic_python_python_exec = '/path/to/python3'
```
<a name="faqperl"></a>
__Q. The `perl` checker has stopped working...__

View File

@ -19,7 +19,7 @@ if has('reltime')
lockvar! g:syntastic_start
endif
let g:syntastic_version = '3.4.0-130'
let g:syntastic_version = '3.4.0-131'
lockvar g:syntastic_version
" Sanity checks {{{1