Formatting.

This commit is contained in:
LCD 47 2019-05-05 08:05:55 +03:00
parent c23d57e1f6
commit 29e15407b2
2 changed files with 4 additions and 2 deletions

View File

@ -19,7 +19,7 @@ if has('reltime')
lockvar! g:_SYNTASTIC_START lockvar! g:_SYNTASTIC_START
endif endif
let g:_SYNTASTIC_VERSION = '3.9.0-36' let g:_SYNTASTIC_VERSION = '3.9.0-38'
lockvar g:_SYNTASTIC_VERSION lockvar g:_SYNTASTIC_VERSION
" Sanity checks {{{1 " Sanity checks {{{1

View File

@ -21,7 +21,9 @@ set cpo&vim
function! SyntaxCheckers_solidity_solc_GetLocList() dict function! SyntaxCheckers_solidity_solc_GetLocList() dict
let makeprg = self.makeprgBuild({}) let makeprg = self.makeprgBuild({})
let errorformat = '%f:%l:%c: %trror: %m,%f:%l:%c: %tarning: %m' let errorformat =
\ '%f:%l:%c: %trror: %m,' .
\ '%f:%l:%c: %tarning: %m'
return SyntasticMake({ return SyntasticMake({
\ 'makeprg': makeprg, \ 'makeprg': makeprg,