2012-12-01 15:17:46 -05:00
|
|
|
"============================================================================
|
|
|
|
"File: python.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
2014-01-05 01:39:14 -05:00
|
|
|
"Maintainer: LCD 47 <lcd047 at gmail dot com>
|
|
|
|
"License: This program is free software. It comes without any warranty,
|
|
|
|
" to the extent permitted by applicable law. You can redistribute
|
|
|
|
" it and/or modify it under the terms of the Do What The Fuck You
|
|
|
|
" Want To Public License, Version 2, as published by Sam Hocevar.
|
|
|
|
" See http://sam.zoy.org/wtfpl/COPYING for more details.
|
2012-12-01 15:17:46 -05:00
|
|
|
"
|
|
|
|
"============================================================================
|
2014-01-03 04:29:08 -05:00
|
|
|
|
2013-02-21 10:50:41 -05:00
|
|
|
if exists("g:loaded_syntastic_python_python_checker")
|
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 04:29:08 -05:00
|
|
|
let g:loaded_syntastic_python_python_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2014-02-06 09:50:27 -05:00
|
|
|
let s:compiler = expand('<sfile>:p:h') . syntastic#util#Slash() . 'compile.py'
|
2013-05-31 14:05:45 -04:00
|
|
|
|
2014-01-05 01:39:14 -05:00
|
|
|
function! SyntaxCheckers_python_python_IsAvailable() dict
|
2014-02-07 04:19:30 -05:00
|
|
|
return executable(self.getExec()) &&
|
|
|
|
\ syntastic#util#versionIsAtLeast(syntastic#util#getVersion(self.getExecEscaped() . ' --version'), [2, 6])
|
2014-01-05 01:39:14 -05:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! SyntaxCheckers_python_python_GetLocList() dict
|
2014-07-07 12:04:22 -04:00
|
|
|
let makeprg = self.makeprgBuild({ 'exe': [self.getExec(), s:compiler] })
|
2013-05-31 14:05:45 -04:00
|
|
|
|
2014-01-05 01:39:14 -05:00
|
|
|
let errorformat = '%E%f:%l:%c: %m'
|
2013-05-31 14:05:45 -04:00
|
|
|
|
2014-07-07 12:04:22 -04:00
|
|
|
let env = syntastic#util#isRunningWindows() ? {} : { 'TERM': 'dumb' }
|
|
|
|
|
2013-05-31 14:05:45 -04:00
|
|
|
return SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
2014-01-05 01:39:14 -05:00
|
|
|
\ 'errorformat': errorformat,
|
2014-07-07 12:04:22 -04:00
|
|
|
\ 'env': env,
|
2014-01-05 01:39:14 -05:00
|
|
|
\ 'returns': [0] })
|
2012-12-01 15:17:46 -05:00
|
|
|
endfunction
|
2013-01-23 19:01:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'python',
|
2013-01-27 15:08:30 -05:00
|
|
|
\ 'name': 'python'})
|
2014-01-03 04:29:08 -05:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: set et sts=4 sw=4:
|