6a184f0e37
Make all the easy updates. There are still quite a few to do, but in doing these ones I can see that syntastic#makeprg#build() needs to accept a few more options. Namely: * "postargs" that appear after the filename * "tail" that appears after everything - used for things like redirecting output and piping to grep/sed/etc * the filename itself - only the java checkers needed this since they specify the directory of the file to check as well There are still a few other things to do as well: * remove the options from the checkers that are now provided by syntastic#makeprg#build implicitly - i.e. the checker exe and args. * also, we need to doc the above implicit checker options
38 lines
1.6 KiB
VimL
38 lines
1.6 KiB
VimL
"============================================================================
|
|
"File: pyflakes.vim
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
"Authors: Martin Grenfell <martin.grenfell@gmail.com>
|
|
" kstep <me@kstep.me>
|
|
" Parantapa Bhattacharya <parantapa@gmail.com>
|
|
"
|
|
"============================================================================
|
|
function! SyntaxCheckers_python_GetHighlightRegex(i)
|
|
if match(a:i['text'], 'is assigned to but never used') > -1
|
|
\ || match(a:i['text'], 'imported but unused') > -1
|
|
\ || match(a:i['text'], 'undefined name') > -1
|
|
\ || match(a:i['text'], 'redefinition of') > -1
|
|
\ || match(a:i['text'], 'referenced before assignment') > -1
|
|
\ || match(a:i['text'], 'duplicate argument') > -1
|
|
\ || match(a:i['text'], 'after other statements') > -1
|
|
\ || match(a:i['text'], 'shadowed by loop variable') > -1
|
|
|
|
let term = split(a:i['text'], "'", 1)[1]
|
|
return '\V\<'.term.'\>'
|
|
endif
|
|
return ''
|
|
endfunction
|
|
|
|
function! SyntaxCheckers_python_GetLocList()
|
|
let makeprg = syntastic#makeprg#build({
|
|
\ 'exe': 'pyflakes',
|
|
\ 'args': g:syntastic_python_checker_args,
|
|
\ 'subchecker': 'pyflakes' })
|
|
let errorformat = '%E%f:%l: could not compile,%-Z%p^,%E%f:%l:%c: %m,%E%f:%l: %m,%-G%.%#'
|
|
|
|
let errors = SyntasticMake({ 'makeprg': makeprg,
|
|
\ 'errorformat': errorformat,
|
|
\ 'defaults': {'text': "Syntax error"} })
|
|
|
|
return errors
|
|
endfunction
|