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
|
|
|
|
2015-03-25 12:44:34 -04:00
|
|
|
if exists('g:loaded_syntastic_python_pyflakes_checker')
|
2013-02-21 10:50:41 -05:00
|
|
|
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 '...'
|
2014-06-30 07:45:30 -04:00
|
|
|
let term = matchstr(a:i['text'], '\m^.\{-}"\zs.\{-1,}\ze"')
|
2015-03-25 12:44:34 -04:00
|
|
|
if term !=# ''
|
2014-06-30 07:45:30 -04:00
|
|
|
return '\V\<' . escape(term, '\') . '\>'
|
2013-07-14 12:13:18 -04:00
|
|
|
endif
|
|
|
|
|
2014-06-30 07:45:30 -04:00
|
|
|
let term = matchstr(a:i['text'], '\m^.\{-}''\zs.\{-1,}\ze''')
|
2015-03-25 12:44:34 -04:00
|
|
|
if term !=# ''
|
2014-06-30 07:45:30 -04:00
|
|
|
return '\V\<' . escape(term, '\') . '\>'
|
2013-07-14 12:13:18 -04:00
|
|
|
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-07-07 12:04:22 -04:00
|
|
|
let makeprg = self.makeprgBuild({})
|
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-07-07 12:04:22 -04:00
|
|
|
let env = syntastic#util#isRunningWindows() ? {} : { 'TERM': 'dumb' }
|
|
|
|
|
2014-01-04 12:26:56 -05:00
|
|
|
let loclist = SyntasticMake({
|
2013-05-31 14:05:45 -04:00
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
2014-07-07 12:04:22 -04:00
|
|
|
\ 'env': env,
|
2015-03-25 12:44:34 -04:00
|
|
|
\ '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
|
|
|
|
|
2015-01-04 05:46:54 -05:00
|
|
|
" vim: set sw=4 sts=4 et fdm=marker:
|