2014-09-17 11:50:32 -04:00
|
|
|
"============================================================================
|
|
|
|
"File: pc_lint.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
|
|
"Maintainer: Steve Bragg <steve at empresseffects 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.
|
|
|
|
"
|
|
|
|
"============================================================================
|
2014-09-17 16:53:02 -04:00
|
|
|
"
|
|
|
|
"" To use a lint option file, rename it to options.lnt and put it in
|
|
|
|
"" the same directory as the file you're linting, or any parent directory
|
|
|
|
"" of that file. Syntastic will use the first options.lnt file it finds.
|
2014-09-17 11:50:32 -04:00
|
|
|
|
|
|
|
if exists("g:loaded_syntastic_c_pc_lint_checker")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_syntastic_c_pc_lint_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2014-09-17 16:53:02 -04:00
|
|
|
if !exists('g:syntastic_pc_lint_config_file')
|
|
|
|
let g:syntastic_pc_lint_config_file = 'options.lnt'
|
|
|
|
endif
|
2014-09-17 11:50:32 -04:00
|
|
|
|
2014-09-17 16:53:02 -04:00
|
|
|
" stolen from c.vim in syntastic
|
|
|
|
function! s:getOptionFile(file)
|
2014-09-17 11:50:32 -04:00
|
|
|
" search in the current file's directory upwards
|
|
|
|
let config = findfile(a:file, '.;')
|
|
|
|
if config == '' || !filereadable(config)
|
2014-09-17 16:53:02 -04:00
|
|
|
return ''
|
2014-09-17 11:50:32 -04:00
|
|
|
endif
|
2014-09-17 16:53:02 -04:00
|
|
|
" convert filename into absolute path filename
|
|
|
|
return fnamemodify(config, ':p')
|
2014-09-17 11:50:32 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! SyntaxCheckers_c_pc_lint_GetLocList() dict
|
2014-09-17 16:53:02 -04:00
|
|
|
|
|
|
|
" -hF1 always shows the filename, tries to make message 1 line
|
|
|
|
" -width(0,0) makes sure there's no line breaks
|
2014-09-17 11:50:32 -04:00
|
|
|
let makeprg = self.makeprgBuild({
|
2014-09-17 16:53:02 -04:00
|
|
|
\ "args": syntastic#util#shescape(
|
|
|
|
\ s:getOptionFile(g:syntastic_pc_lint_config_file)) . ' -hF1 ' .
|
|
|
|
\ syntastic#util#shescape('-width(0,0)')})
|
2014-09-17 11:50:32 -04:00
|
|
|
|
|
|
|
let errorformat =
|
2014-09-17 16:53:02 -04:00
|
|
|
\ '%f %l %trror %n: %m,' .
|
|
|
|
\ '%f %l %tarning %n: %m,' .
|
|
|
|
\ '%W%f %l Info %n: %m'
|
2014-09-17 11:50:32 -04:00
|
|
|
|
|
|
|
return SyntasticMake({
|
2014-09-17 16:53:02 -04:00
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat })
|
2014-09-17 11:50:32 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
2014-09-17 16:53:02 -04:00
|
|
|
\ 'filetype': 'c',
|
|
|
|
\ 'name': 'pc_lint',
|
|
|
|
\ 'exec': 'lint-nt'})
|
2014-09-17 11:50:32 -04:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: set et sts=4 sw=4:
|