mirror of
https://github.com/amix/vimrc
synced 2025-07-13 23:05:01 +08:00
renamed sources_non_forked folder to bundle
This commit is contained in:
71
bundle/syntastic/syntax_checkers/python/pyflakes.vim
Normal file
71
bundle/syntastic/syntax_checkers/python/pyflakes.vim
Normal file
@ -0,0 +1,71 @@
|
||||
"============================================================================
|
||||
"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>
|
||||
"
|
||||
"============================================================================
|
||||
|
||||
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 '...'
|
||||
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
|
||||
endif
|
||||
return ''
|
||||
endfunction
|
||||
|
||||
function! SyntaxCheckers_python_pyflakes_GetLocList() dict
|
||||
let makeprg = self.makeprgBuild({})
|
||||
|
||||
let errorformat =
|
||||
\ '%E%f:%l: could not compile,'.
|
||||
\ '%-Z%p^,'.
|
||||
\ '%E%f:%l:%c: %m,'.
|
||||
\ '%E%f:%l: %m,'.
|
||||
\ '%-G%.%#'
|
||||
|
||||
let loclist = SyntasticMake({
|
||||
\ 'makeprg': makeprg,
|
||||
\ 'errorformat': errorformat,
|
||||
\ '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
|
||||
|
||||
" vim: set et sts=4 sw=4:
|
Reference in New Issue
Block a user