33 lines
1.4 KiB
VimL
33 lines
1.4 KiB
VimL
|
"============================================================================
|
||
|
"File: html.vim
|
||
|
"Description: Syntax checking plugin for syntastic.vim
|
||
|
"Maintainer: Martin Grenfell <martin.grenfell at gmail 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.
|
||
|
"
|
||
|
"============================================================================
|
||
|
function! SyntaxCheckers_html_GetLocList()
|
||
|
let makeprg2="curl -s -F output=text -F \"uploaded_file=@".expand('%:p').";type=text/html\" http://validator.w3.org/check \\| sed -n -e '/\<em\>Line\.\*/ \{ N; s/\\n//; N; s/\\n//; /msg/p; \}' -e ''/msg_warn/p'' -e ''/msg_info/p'' \\| sed -e 's/[ ]\\+/ /g' -e 's/\<[\^\>]\*\>//g' -e 's/\^[ ]//g'"
|
||
|
let errorformat2='Line %l\, Column %c: %m'
|
||
|
let loclist = SyntasticMake({ 'makeprg': makeprg2, 'errorformat': errorformat2 })
|
||
|
|
||
|
let n = len(loclist) - 1
|
||
|
let bufnum = bufnr("")
|
||
|
while n >= 0
|
||
|
let i = loclist[n]
|
||
|
let i['bufnr'] = bufnum
|
||
|
|
||
|
if i['lnum'] == 0
|
||
|
let i['type'] = 'w'
|
||
|
else
|
||
|
let i['type'] = 'e'
|
||
|
endif
|
||
|
let n -= 1
|
||
|
endwhile
|
||
|
|
||
|
return loclist
|
||
|
endfunction
|