2011-11-16 10:37:03 -05:00
|
|
|
"============================================================================
|
|
|
|
"File: python.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
|
|
"
|
|
|
|
"Authors: Martin Grenfell <martin.grenfell@gmail.com>
|
|
|
|
" kstep <me@kstep.me>
|
2012-01-15 12:16:47 -05:00
|
|
|
" Parantapa Bhattacharya <parantapa@gmail.com>
|
2011-11-16 10:37:03 -05:00
|
|
|
"
|
|
|
|
"============================================================================
|
2012-01-15 12:16:47 -05:00
|
|
|
"
|
|
|
|
" For forcing the use of flake8, pyflakes, or pylint set
|
2011-11-16 10:37:03 -05:00
|
|
|
"
|
|
|
|
" let g:syntastic_python_checker = 'pyflakes'
|
2012-01-15 12:16:47 -05:00
|
|
|
"
|
|
|
|
" in your .vimrc. Default is flake8.
|
2011-11-16 10:37:03 -05:00
|
|
|
|
2009-07-29 03:19:07 -04:00
|
|
|
if exists("loaded_python_syntax_checker")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let loaded_python_syntax_checker = 1
|
|
|
|
|
2011-11-16 10:37:03 -05:00
|
|
|
"bail if the user doesnt have his favorite checker or flake8 or pyflakes installed
|
|
|
|
if !exists('g:syntastic_python_checker') || !executable('g:syntastic_python_checker')
|
2012-01-15 12:16:47 -05:00
|
|
|
if executable("flake8")
|
|
|
|
let g:syntastic_python_checker = 'flake8'
|
|
|
|
elseif executable("pyflakes")
|
|
|
|
let g:syntastic_python_checker = 'pyflakes'
|
|
|
|
elseif executable("pylint")
|
|
|
|
let g:syntastic_python_checker = 'pylint'
|
|
|
|
else
|
|
|
|
finish
|
|
|
|
endif
|
2009-07-29 03:19:07 -04:00
|
|
|
endif
|
|
|
|
|
2011-05-03 08:37:15 -04:00
|
|
|
function! SyntaxCheckers_python_Term(i)
|
|
|
|
if a:i['type'] ==# 'E'
|
|
|
|
let a:i['text'] = "Syntax error"
|
|
|
|
endif
|
|
|
|
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
|
2011-11-16 10:37:03 -05:00
|
|
|
\ || 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
|
2011-05-03 08:37:15 -04:00
|
|
|
|
|
|
|
let term = split(a:i['text'], "'", 1)[1]
|
2011-11-16 10:37:03 -05:00
|
|
|
return '\V\<'.term.'\>'
|
2011-05-03 08:37:15 -04:00
|
|
|
endif
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|
2012-01-15 12:16:47 -05:00
|
|
|
if g:syntastic_python_checker == 'pylint'
|
|
|
|
function! SyntaxCheckers_python_GetLocList()
|
|
|
|
let makeprg = 'pylint -f parseable -r n -i y ' .
|
|
|
|
\ shellescape(expand('%')) .
|
|
|
|
\ ' \| sed ''s_: \[[RC]_: \[W_''' .
|
|
|
|
\ ' \| sed ''s_: \[[F]_:\ \[E_'''
|
|
|
|
let errorformat = '%f:%l: [%t%n] %m,%-GNo config%m'
|
|
|
|
let errors = SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })
|
2009-07-29 03:19:07 -04:00
|
|
|
|
2012-01-15 12:16:47 -05:00
|
|
|
return errors
|
|
|
|
endfunction
|
|
|
|
else
|
|
|
|
function! SyntaxCheckers_python_GetLocList()
|
|
|
|
let makeprg = g:syntastic_python_checker.' '.shellescape(expand('%'))
|
|
|
|
let errorformat =
|
|
|
|
\ '%E%f:%l: could not compile,%-Z%p^,%W%f:%l:%c: %m,%W%f:%l: %m,%-G%.%#'
|
2009-07-29 03:19:07 -04:00
|
|
|
|
2012-01-15 12:16:47 -05:00
|
|
|
let errors = SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })
|
2009-07-29 03:19:07 -04:00
|
|
|
|
2012-01-15 12:16:47 -05:00
|
|
|
call SyntasticHighlightErrors(errors, function('SyntaxCheckers_python_Term'))
|
|
|
|
|
|
|
|
return errors
|
|
|
|
endfunction
|
|
|
|
endif
|