2014-02-08 05:05:16 -05:00
|
|
|
"============================================================================
|
|
|
|
"File: pep257.vim
|
|
|
|
"Description: Docstring style checking plugin for syntastic.vim
|
|
|
|
"============================================================================
|
|
|
|
|
2014-07-02 07:18:18 -04:00
|
|
|
if exists('g:loaded_syntastic_python_pep257_checker')
|
2014-02-08 05:05:16 -05:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_syntastic_python_pep257_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
|
|
|
function! SyntaxCheckers_python_pep257_GetLocList() dict
|
2014-07-02 07:18:18 -04:00
|
|
|
if !exists('s:pep257_new')
|
2015-02-04 05:43:54 -05:00
|
|
|
let s:pep257_new = syntastic#util#versionIsAtLeast(self.getVersion(), [0, 3])
|
2014-07-02 07:18:18 -04:00
|
|
|
endif
|
|
|
|
|
2014-08-03 18:02:51 -04:00
|
|
|
let makeprg = self.makeprgBuild({})
|
2014-07-02 07:18:18 -04:00
|
|
|
|
|
|
|
if s:pep257_new
|
|
|
|
let errorformat =
|
|
|
|
\ '%E%f:%l %.%#:,' .
|
|
|
|
\ '%+C %m'
|
|
|
|
else
|
|
|
|
let errorformat =
|
|
|
|
\ '%E%f:%l:%c%\%.%\%.%\d%\+:%\d%\+: %m,' .
|
|
|
|
\ '%E%f:%l:%c: %m,' .
|
|
|
|
\ '%+C %m'
|
|
|
|
endif
|
2014-02-08 05:05:16 -05:00
|
|
|
|
2014-08-03 18:02:51 -04:00
|
|
|
let env = syntastic#util#isRunningWindows() ? {} : { 'TERM': 'dumb' }
|
|
|
|
|
2014-02-08 05:05:16 -05:00
|
|
|
let loclist = SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
2014-08-03 18:02:51 -04:00
|
|
|
\ 'env': env,
|
2014-02-08 05:05:16 -05:00
|
|
|
\ 'subtype': 'Style',
|
2014-03-02 09:35:00 -05:00
|
|
|
\ 'preprocess': 'killEmpty',
|
2014-02-08 05:05:16 -05:00
|
|
|
\ 'postprocess': ['compressWhitespace'] })
|
|
|
|
|
2014-07-02 07:18:18 -04:00
|
|
|
if s:pep257_new == 0
|
|
|
|
" byte offsets rather than column numbers
|
|
|
|
for e in loclist
|
|
|
|
let e['col'] = get(e, 'col', 0) + 1
|
|
|
|
endfor
|
|
|
|
endif
|
2014-02-08 05:05:16 -05:00
|
|
|
|
|
|
|
return loclist
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'python',
|
|
|
|
\ 'name': 'pep257'})
|
|
|
|
|
|
|
|
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:
|