Nix checker: cleanup.

This commit is contained in:
LCD 47 2015-06-20 12:32:55 +03:00
parent c840655d13
commit 98e79d85f0
3 changed files with 12 additions and 11 deletions

View File

@ -53,12 +53,12 @@ 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. compile their code or execute their script to find them.
At the time of this writing, syntastic has checking plugins for ActionScript, At the time of this writing, syntastic has checking plugins for ActionScript,
Ada, API Blueprint, AppleScript, AsciiDoc, ASM, BEMHTML, Bro, Bourne shell, Ada, API Blueprint, AppleScript, AsciiDoc, ASM, BEMHTML, Bro, Bourne shell, C,
C, C++, C#, Cabal, Chef, CoffeeScript, Coco, Coq, CSS, Cucumber, CUDA, D, C++, C#, Cabal, Chef, CoffeeScript, Coco, Coq, CSS, Cucumber, CUDA, D, Dart,
Dart, DocBook, Dust, Elixir, Erlang, eRuby, Fortran, Gentoo metadata, GLSL, DocBook, Dust, Elixir, Erlang, eRuby, Fortran, Gentoo metadata, GLSL, Go,
Go, Haml, Haskell, Haxe, Handlebars, HSS, HTML, Java, JavaScript, JSON, JSX, Haml, Haskell, Haxe, Handlebars, HSS, HTML, Java, JavaScript, JSON, JSX, LESS,
LESS, Lex, Limbo, LISP, LLVM intermediate language, Lua, Markdown, MATLAB, Lex, Limbo, LISP, LLVM intermediate language, Lua, Markdown, MATLAB, Mercury,
Mercury, NASM, Objective-C, Objective-C++, OCaml, Perl, Perl POD, PHP, gettext NASM, Nix, Objective-C, Objective-C++, OCaml, Perl, Perl POD, PHP, gettext
Portable Object, OS X and iOS property lists, Puppet, Python, R, Racket, Relax 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, NG, reStructuredText, RPM spec, Ruby, SASS/SCSS, Scala, Slim, SML, Tcl, TeX,
Texinfo, Twig, TypeScript, Vala, Verilog, VHDL, VimL, xHtml, XML, XSLT, YACC, Texinfo, Twig, TypeScript, Vala, Verilog, VHDL, VimL, xHtml, XML, XSLT, YACC,

View File

@ -19,7 +19,7 @@ if has('reltime')
lockvar! g:_SYNTASTIC_START lockvar! g:_SYNTASTIC_START
endif endif
let g:_SYNTASTIC_VERSION = '3.6.0-96' let g:_SYNTASTIC_VERSION = '3.6.0-98'
lockvar g:_SYNTASTIC_VERSION lockvar g:_SYNTASTIC_VERSION
" Sanity checks {{{1 " Sanity checks {{{1

View File

@ -20,11 +20,12 @@ let s:save_cpo = &cpo
set cpo&vim set cpo&vim
function! SyntaxCheckers_nix_nix_GetLocList() dict function! SyntaxCheckers_nix_nix_GetLocList() dict
let makeprg = self.makeprgBuild({ 'args': '--parse-only' }) let makeprg = self.makeprgBuild({ 'args_after': '--parse-only' })
let errorformat = "%m\\, at %f:%l:%c," let errorformat =
\ ."%m at %f\\, line %l:," \ '%m\, at %f:%l:%c,' .
\ ."error: %m\\, in %f" \ '%m at %f\, line %l:,' .
\ 'error: %m\, in %f'
return SyntasticMake({ return SyntasticMake({
\ 'makeprg': makeprg, \ 'makeprg': makeprg,