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
|
|
|
|
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-08-15 13:41:49 -04:00
|
|
|
let makeprg = syntastic#makeprg#build({
|
|
|
|
\ 'exe': 'pep257',
|
2013-10-28 07:53:33 -04:00
|
|
|
\ 'checker': self })
|
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-08-15 13:41:49 -04:00
|
|
|
for n in range(len(loclist))
|
2013-08-15 18:36:40 -04:00
|
|
|
let loclist[n]['col'] = get(loclist[n], 'col', 0) + 1
|
2013-08-15 13:41:49 -04:00
|
|
|
endfor
|
|
|
|
|
|
|
|
return loclist
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'python',
|
|
|
|
\ 'name': 'pep257'})
|