aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/syntastic/syntax_checkers/python/py3kwarn.vim
blob: b0e7771499a5ca5abf5793cf30c6225f9df0cd1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
"============================================================================
"File:        py3kwarn.vim
"Description: Syntax checking plugin for syntastic.vim
"Authors:     Liam Curry <liam@curry.name>
"
"============================================================================

if exists('g:loaded_syntastic_python_py3kwarn_checker')
    finish
endif
let g:loaded_syntastic_python_py3kwarn_checker = 1

let s:save_cpo = &cpo
set cpo&vim

function! SyntaxCheckers_python_py3kwarn_GetLocList() dict
    let makeprg = self.makeprgBuild({})

    let errorformat = '%W%f:%l:%c: %m'

    let env = syntastic#util#isRunningWindows() ? {} : { 'TERM': 'dumb' }

    return SyntasticMake({
        \ 'makeprg': makeprg,
        \ 'errorformat': errorformat,
        \ 'env': env })
endfunction

call g:SyntasticRegistry.CreateAndRegisterChecker({
    \ 'filetype': 'python',
    \ 'name': 'py3kwarn'})

let &cpo = s:save_cpo
unlet s:save_cpo

" vim: set sw=4 sts=4 et fdm=marker: