2014-02-08 05:05:16 -05:00
|
|
|
"============================================================================
|
|
|
|
"File: shellcheck.vim
|
|
|
|
"Description: Shell script syntax/style checking plugin for syntastic.vim
|
|
|
|
"============================================================================
|
|
|
|
|
2015-07-13 06:22:46 -04:00
|
|
|
if exists('g:loaded_syntastic_sh_shellcheck_checker')
|
2014-02-08 05:05:16 -05:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_syntastic_sh_shellcheck_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
|
|
|
function! SyntaxCheckers_sh_shellcheck_GetLocList() dict
|
|
|
|
let makeprg = self.makeprgBuild({ 'args_after': '-f gcc' })
|
|
|
|
|
|
|
|
let errorformat =
|
|
|
|
\ '%f:%l:%c: %trror: %m,' .
|
|
|
|
\ '%f:%l:%c: %tarning: %m,' .
|
|
|
|
\ '%f:%l:%c: %tote: %m'
|
|
|
|
|
|
|
|
let loclist = SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
|
|
|
\ 'returns': [0, 1] })
|
|
|
|
|
|
|
|
for e in loclist
|
|
|
|
if e['type'] ==? 'n'
|
|
|
|
let e['type'] = 'w'
|
|
|
|
let e['subtype'] = 'Style'
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return loclist
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'sh',
|
|
|
|
\ 'name': 'shellcheck' })
|
|
|
|
|
|
|
|
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:
|