mirror of
https://github.com/amix/vimrc
synced 2025-07-13 23:05:01 +08:00
renamed sources_non_forked folder to bundle
This commit is contained in:
44
bundle/syntastic/syntax_checkers/sh/shellcheck.vim
Normal file
44
bundle/syntastic/syntax_checkers/sh/shellcheck.vim
Normal file
@ -0,0 +1,44 @@
|
||||
"============================================================================
|
||||
"File: shellcheck.vim
|
||||
"Description: Shell script syntax/style checking plugin for syntastic.vim
|
||||
"============================================================================
|
||||
|
||||
if exists("g:loaded_syntastic_sh_shellcheck_checker")
|
||||
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
|
||||
|
||||
" vim: set et sts=4 sw=4:
|
Reference in New Issue
Block a user