2013-08-15 13:41:49 -04:00
|
|
|
"============================================================================
|
|
|
|
"File: pep257.vim
|
|
|
|
"Description: Docstring style checking plugin for syntastic.vim
|
|
|
|
"============================================================================
|
|
|
|
"
|
|
|
|
" For details about pep257 see: https://github.com/GreenSteam/pep257
|
|
|
|
|
|
|
|
if exists("g:loaded_syntastic_python_pep257_checker")
|
|
|
|
finish
|
|
|
|
endif
|
2013-08-15 18:36:40 -04:00
|
|
|
let g:loaded_syntastic_python_pep257_checker = 1
|
2013-08-15 13:41:49 -04:00
|
|
|
|
2014-01-03 04:29:08 -05:00
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2013-08-15 18:36:40 -04:00
|
|
|
" sanity: kill empty lines here rather than munging errorformat
|
|
|
|
function! SyntaxCheckers_python_pep257_Preprocess(errors)
|
|
|
|
return filter(copy(a:errors), 'v:val != ""')
|
|
|
|
endfunction
|
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_python_pep257_GetLocList() dict
|
2013-11-01 05:51:47 -04:00
|
|
|
let makeprg = self.makeprgBuild({})
|
2013-08-15 13:41:49 -04:00
|
|
|
|
2013-08-15 18:36:40 -04:00
|
|
|
let errorformat =
|
|
|
|
\ '%E%f:%l:%c%\%.%\%.%\d%\+:%\d%\+: %m,' .
|
|
|
|
\ '%E%f:%l:%c: %m,' .
|
|
|
|
\ '%+C %m'
|
2013-08-15 13:41:49 -04:00
|
|
|
|
|
|
|
let loclist = SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
2013-08-15 18:36:40 -04:00
|
|
|
\ 'subtype': 'Style',
|
|
|
|
\ 'preprocess': 'SyntaxCheckers_python_pep257_Preprocess',
|
|
|
|
\ 'postprocess': ['compressWhitespace'] })
|
2013-08-15 13:41:49 -04:00
|
|
|
|
2013-08-15 18:36:40 -04:00
|
|
|
" pep257 outputs byte offsets rather than column numbers
|
2013-11-08 03:45:15 -05:00
|
|
|
for e in loclist
|
2013-11-04 16:00:51 -05:00
|
|
|
let e['col'] = get(e, 'col', 0) + 1
|
2013-08-15 13:41:49 -04:00
|
|
|
endfor
|
|
|
|
|
|
|
|
return loclist
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'python',
|
|
|
|
\ 'name': 'pep257'})
|
2014-01-03 04:29:08 -05:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: set et sts=4 sw=4:
|