2012-02-20 05:20:48 -05:00
|
|
|
"============================================================================
|
|
|
|
"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_Term(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()
|
2012-02-23 08:22:53 -05:00
|
|
|
let makeprg = 'pyflakes '.g:syntastic_python_checker_args.' '.shellescape(expand('%'))
|
2012-02-28 10:13:46 -05:00
|
|
|
let errorformat = '%E%f:%l: could not compile,%-Z%p^,%E%f:%l:%c: %m,%E%f:%l: %m,%-G%.%#'
|
2012-02-20 05:20:48 -05:00
|
|
|
|
2012-02-28 10:13:46 -05:00
|
|
|
let errors = SyntasticMake({ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
|
|
|
\ 'defaults': {'text': "Syntax error"} })
|
2012-02-20 05:20:48 -05:00
|
|
|
|
|
|
|
call SyntasticHighlightErrors(errors, function('SyntaxCheckers_python_Term'))
|
|
|
|
|
|
|
|
return errors
|
|
|
|
endfunction
|