Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit 140f516

Browse files
committed
Checker markdown/mdl: update errorformat (cf. #2320).
1 parent b3e2d84 commit 140f516

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

plugin/syntastic.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if has('reltime')
1919
lockvar! g:_SYNTASTIC_START
2020
endif
2121

22-
let g:_SYNTASTIC_VERSION = '3.10.0-8'
22+
let g:_SYNTASTIC_VERSION = '3.10.0-9'
2323
lockvar g:_SYNTASTIC_VERSION
2424

2525
" Sanity checks {{{1

syntax_checkers/markdown/mdl.vim

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ function! SyntaxCheckers_markdown_mdl_GetLocList() dict
2626
let makeprg = self.makeprgBuild({ 'args': '--warnings' })
2727

2828
let errorformat =
29-
\ '%E%f:%\s%\=%l: %m,'.
29+
\ '%E%f:%\s%\=%l: %m,' .
30+
\ '%E%f:%l:%c %m,' .
31+
\ '%E%f:%l %m,' .
3032
\ '%W%f: Kramdown Warning: %m found on line %l'
3133

3234
return SyntasticMake({

0 commit comments

Comments
 (0)