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>
|
|
|
|
"
|
|
|
|
"============================================================================
|
2014-01-03 04:29:08 -05:00
|
|
|
|
2013-02-21 10:50:41 -05:00
|
|
|
if exists("g:loaded_syntastic_python_pyflakes_checker")
|
|
|
|
finish
|
|
|
|
endif
|
2013-11-26 16:19:01 -05:00
|
|
|
let g:loaded_syntastic_python_pyflakes_checker = 1
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2014-01-03 04:29:08 -05:00
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2013-01-23 19:01:30 -05:00
|
|
|
function! SyntaxCheckers_python_pyflakes_GetHighlightRegex(i)
|
2013-11-26 16:19:01 -05:00
|
|
|
if stridx(a:i['text'], 'is assigned to but never used') >= 0
|
|
|
|
\ || stridx(a:i['text'], 'imported but unused') >= 0
|
|
|
|
\ || stridx(a:i['text'], 'undefined name') >= 0
|
|
|
|
\ || stridx(a:i['text'], 'redefinition of') >= 0
|
|
|
|
\ || stridx(a:i['text'], 'referenced before assignment') >= 0
|
|
|
|
\ || stridx(a:i['text'], 'duplicate argument') >= 0
|
|
|
|
\ || stridx(a:i['text'], 'after other statements') >= 0
|
|
|
|
\ || stridx(a:i['text'], 'shadowed by loop variable') >= 0
|
2013-07-14 12:13:18 -04:00
|
|
|
|
|
|
|
" fun with Python's %r: try "..." first, then '...'
|
|
|
|
let terms = split(a:i['text'], '"', 1)
|
|
|
|
if len(terms) > 2
|
|
|
|
return terms[1]
|
|
|
|
endif
|
|
|
|
|
|
|
|
let terms = split(a:i['text'], "'", 1)
|
|
|
|
if len(terms) > 2
|
|
|
|
return terms[1]
|
|
|
|
endif
|
2012-02-20 05:20:48 -05:00
|
|
|
endif
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_python_pyflakes_GetLocList() dict
|
2014-04-23 14:16:41 -04:00
|
|
|
let makeprg = self.makeprgBuild({
|
|
|
|
\ 'exe_before': (syntastic#util#isRunningWindows() ? '' : 'TERM=dumb') })
|
2013-05-31 14:05:45 -04:00
|
|
|
|
2013-05-14 12:36:20 -04:00
|
|
|
let errorformat =
|
|
|
|
\ '%E%f:%l: could not compile,'.
|
|
|
|
\ '%-Z%p^,'.
|
2014-02-27 11:10:47 -05:00
|
|
|
\ '%E%f:%l:%c: %m,'.
|
2013-05-14 12:36:20 -04:00
|
|
|
\ '%E%f:%l: %m,'.
|
|
|
|
\ '%-G%.%#'
|
2012-02-20 05:20:48 -05:00
|
|
|
|
2014-01-04 12:26:56 -05:00
|
|
|
let loclist = SyntasticMake({
|
2013-05-31 14:05:45 -04:00
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
|
|
|
\ 'defaults': {'text': "Syntax error"} })
|
2014-01-04 12:26:56 -05:00
|
|
|
|
|
|
|
for e in loclist
|
|
|
|
let e['vcol'] = 0
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return loclist
|
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': 'pyflakes'})
|
2014-01-03 04:29:08 -05:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: set et sts=4 sw=4:
|