Add note about python support in README. Related to #54.

This commit is contained in:
Chiel92 2015-06-11 09:51:51 +02:00
parent 5e71d140e5
commit ba12dfc1b7
2 changed files with 4 additions and 1 deletions

View File

@ -8,6 +8,9 @@ When no formatprogram exists (or no formatprogram is installed) for a certain fi
How to install
-----------------------
It is required that your vim has builtin python support. You can check whether this is the case
by running `vim --version` and check that `+python` is listed among features.
####Vundle
Put this in your .vimrc

View File

@ -113,7 +113,7 @@ function! s:TryFormatter()
if !has("python")
echohl WarningMsg |
\ echomsg "WARNING: vim has no support for python, but it is necessary to verify the custom formatter!" |
\ echomsg "WARNING: vim has no support for python, but it is required to run the formatter!" |
\ echohl None
return 1
endif