From 7ed52d1e44a34223e9c2a4c527b186a141ea6f00 Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Thu, 16 Oct 2014 15:18:54 +0300 Subject: [PATCH] README: rephrase. --- README.markdown | 10 +++++----- plugin/syntastic.vim | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.markdown b/README.markdown index 569f83bb..1f8ede1a 100644 --- a/README.markdown +++ b/README.markdown @@ -72,19 +72,19 @@ Syntastic itself has rather relaxed requirements: it doesn't have any external dependencies, and it needs a version of [Vim][13] compiled with a few common features: `autocmd`, `eval`, `file_in_path`, `modify_fname`, `quickfix`, `reltime`, and `user_commands`. Not all possible combinations of features that -include the ones above make equal sense on all operating systems, but [Vim][13] +include the ones above make equal sense on all operating systems, but Vim version 7 or later with the "normal", "big", or "huge" feature sets should be fine. -Syntastic can also be used with all modern plugin managers, such as +Syntastic should work with any modern plugin managers for Vim, such as [NeoBundle][14], [Pathogen][1], [Vim-Addon-Manager][15], [Vim-Plug][16], or [Vundle][17]. Instructions for installing syntastic with [Pathogen][1] are included below for completeness. Last but not least: syntastic doesn't know how to do any syntax checks by -itself. You need to install external checkers corresponding to the types of -files you want to check. Please consult the [wiki][3] for a list of supported -checkers. +itself. In order to get meaningful results you need to install external +checkers corresponding to the types of files you use. Please consult the +[wiki][3] for a list of supported checkers. diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index 2ba50db4..353e2dc7 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.5.0-68' +let g:syntastic_version = '3.5.0-69' lockvar g:syntastic_version " Sanity checks {{{1