2012-02-20 05:20:48 -05:00
|
|
|
"============================================================================
|
|
|
|
"File: flake8.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
|
|
"Authors: Sylvain Soliman <Sylvain dot Soliman+git at gmail dot com>
|
|
|
|
" kstep <me@kstep.me>
|
|
|
|
"
|
|
|
|
"============================================================================
|
2013-02-21 10:50:41 -05:00
|
|
|
if exists("g:loaded_syntastic_python_flake8_checker")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_syntastic_python_flake8_checker=1
|
|
|
|
|
2013-01-23 19:01:30 -05:00
|
|
|
function! SyntaxCheckers_python_flake8_IsAvailable()
|
|
|
|
return executable('flake8')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! SyntaxCheckers_python_flake8_GetHighlightRegex(i)
|
2012-02-20 05:20:48 -05:00
|
|
|
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
|
|
|
|
|
2013-01-23 19:01:30 -05:00
|
|
|
function! SyntaxCheckers_python_flake8_GetLocList()
|
2012-12-16 13:28:08 -05:00
|
|
|
let makeprg = syntastic#makeprg#build({
|
|
|
|
\ 'exe': 'flake8',
|
|
|
|
\ 'subchecker': 'flake8' })
|
2013-03-17 06:59:54 -04:00
|
|
|
let errorformat = '%E%f:%l: could not compile,%-Z%p^,'.
|
2013-03-18 05:42:22 -04:00
|
|
|
\'%W%f:%l:%c: %[FE]%n %m,'.
|
|
|
|
\'%W%f:%l:%c: %[CW]%n %m,'.
|
2013-03-17 06:59:54 -04:00
|
|
|
\'%E%f:%l:%c: %t%n %m,'.
|
|
|
|
\'%E%f:%l: %t%n %m,%-G%.%#'
|
2012-03-02 05:05:15 -05:00
|
|
|
return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })
|
2012-02-20 05:20:48 -05:00
|
|
|
endfunction
|
2013-01-23 19:01:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'python',
|
2013-01-27 15:08:30 -05:00
|
|
|
\ 'name': 'flake8'})
|