From fc8f8e5006fe7dbdadb38e017d6f4e3aae7fc8f7 Mon Sep 17 00:00:00 2001 From: LCD 47 Date: Mon, 23 Feb 2015 15:59:38 +0200 Subject: [PATCH] RAEDME: minor rephrase. --- README.markdown | 29 +++++++++++++++-------------- plugin/syntastic.vim | 2 +- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/README.markdown b/README.markdown index f7a4e6cf..ff457364 100644 --- a/README.markdown +++ b/README.markdown @@ -53,20 +53,21 @@ are detected, the user is notified and is happy because they didn't have to compile their code or execute their script to find them. At the time of this writing, syntastic has checking plugins for ActionScript, -Ada, AppleScript, AsciiDoc, ASM, BEMHTML, Bro, Bourne shell, C, C++, C#, -Cabal, Chef, CoffeeScript, Coco, Coq, CSS, Cucumber, CUDA, D, Dart, DocBook, -Dust, Elixir, Erlang, eRuby, Fortran, Gentoo metadata, GLSL, Go, Haml, -Haskell, Haxe, Handlebars, HSS, HTML, Java, JavaScript, JSON, JSX, LESS, -Lex, Limbo, LISP, LLVM intermediate language, Lua, Markdown, MATLAB, NASM, -Objective-C, Objective-C++, OCaml, Perl, Perl POD, PHP, gettext Portable -Object, OS X and iOS property lists, Puppet, Python, R, Racket, Relax NG, -reStructuredText, RPM spec, Ruby, SASS/SCSS, Scala, Slim, SML, Tcl, TeX, -Texinfo, Twig, TypeScript, Vala, Verilog, VHDL, VimL, xHtml, XML, XSLT, YACC, -YAML, z80, Zope page templates, and zsh. See the [wiki][3] for details about -the corresponding supported checkers. A number of third party Vim plugins -also provide checking plugins for syntastic, for example [omnisharp-vim][25], -[rust.vim][12], [syntastic-extras][26], [syntastic-more][27], [vim-swift][24], -and [vint-syntastic][28]. +Ada, AppleScript, AsciiDoc, ASM, BEMHTML, Bro, Bourne shell, C, C++, C#, Cabal, +Chef, CoffeeScript, Coco, Coq, CSS, Cucumber, CUDA, D, Dart, DocBook, Dust, +Elixir, Erlang, eRuby, Fortran, Gentoo metadata, GLSL, Go, Haml, Haskell, +Haxe, Handlebars, HSS, HTML, Java, JavaScript, JSON, JSX, LESS, Lex, Limbo, +LISP, LLVM intermediate language, Lua, Markdown, MATLAB, NASM, Objective-C, +Objective-C++, OCaml, Perl, Perl POD, PHP, gettext Portable Object, OS X and +iOS property lists, Puppet, Python, R, Racket, Relax NG, reStructuredText, RPM +spec, Ruby, SASS/SCSS, Scala, Slim, SML, Tcl, TeX, Texinfo, Twig, TypeScript, +Vala, Verilog, VHDL, VimL, xHtml, XML, XSLT, YACC, YAML, z80, Zope page +templates, and zsh. See the [wiki][3] for details about the corresponding +supported checkers. + +A number of third-party Vim plugins also provide checkers for syntastic, +for example: [omnisharp-vim][25], [rust.vim][12], [syntastic-extras][26], +[syntastic-more][27], [vim-swift][24], and [vint-syntastic][28]. Below is a screenshot showing the methods that Syntastic uses to display syntax errors. Note that, in practise, you will only have a subset of these methods diff --git a/plugin/syntastic.vim b/plugin/syntastic.vim index b4c8f126..824e2201 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-40' +let g:_SYNTASTIC_VERSION = '3.6.0-41' lockvar g:_SYNTASTIC_VERSION " Sanity checks {{{1