1
0
Fork 0
mirror of synced 2024-06-02 15:31:09 -04:00
ultimate-vim/sources_non_forked/syntastic/syntax_checkers/python/pyflakes.vim

75 lines
2.3 KiB
VimL
Raw Normal View History

"============================================================================
"File: pyflakes.vim
"Description: Syntax checking plugin for syntastic
"Authors: Martin Grenfell <martin.grenfell@gmail.com>
" kstep <me@kstep.me>
" Parantapa Bhattacharya <parantapa@gmail.com>
"
"============================================================================
2015-07-13 06:22:46 -04:00
if exists('g:loaded_syntastic_python_pyflakes_checker')
finish
endif
let g:loaded_syntastic_python_pyflakes_checker = 1
let s:save_cpo = &cpo
set cpo&vim
function! SyntaxCheckers_python_pyflakes_GetHighlightRegex(i)
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
" fun with Python's %r: try "..." first, then '...'
2014-07-02 07:18:18 -04:00
let term = matchstr(a:i['text'], '\m^.\{-}"\zs.\{-1,}\ze"')
2015-07-13 06:22:46 -04:00
if term !=# ''
2014-07-02 07:18:18 -04:00
return '\V\<' . escape(term, '\') . '\>'
endif
2014-07-02 07:18:18 -04:00
let term = matchstr(a:i['text'], '\m^.\{-}''\zs.\{-1,}\ze''')
2015-07-13 06:22:46 -04:00
if term !=# ''
2014-07-02 07:18:18 -04:00
return '\V\<' . escape(term, '\') . '\>'
endif
endif
return ''
endfunction
function! SyntaxCheckers_python_pyflakes_GetLocList() dict
2014-08-03 18:02:51 -04:00
let makeprg = self.makeprgBuild({})
let errorformat =
\ '%E%f:%l: could not compile,'.
\ '%-Z%p^,'.
\ '%E%f:%l:%c: %m,'.
\ '%E%f:%l: %m,'.
\ '%-G%.%#'
2014-08-03 18:02:51 -04:00
let env = syntastic#util#isRunningWindows() ? {} : { 'TERM': 'dumb' }
let loclist = SyntasticMake({
\ 'makeprg': makeprg,
\ 'errorformat': errorformat,
2014-08-03 18:02:51 -04:00
\ 'env': env,
2015-07-13 06:22:46 -04:00
\ 'defaults': {'text': 'Syntax error'} })
for e in loclist
let e['vcol'] = 0
endfor
return loclist
endfunction
call g:SyntasticRegistry.CreateAndRegisterChecker({
\ 'filetype': 'python',
\ 'name': 'pyflakes'})
let &cpo = s:save_cpo
unlet s:save_cpo
2015-01-18 07:58:28 -05:00
" vim: set sw=4 sts=4 et fdm=marker: