Too many '.'

This commit is contained in:
Jeremy Cantrell 2010-09-26 02:48:43 +08:00 committed by Martin Grenfell
parent c94e60fa5f
commit 4cedcf3ee7

View File

@ -23,7 +23,7 @@ function! SyntaxCheckers_html_GetLocList()
"grep out the '<table> lacks "summary" attribute' since it is almost "grep out the '<table> lacks "summary" attribute' since it is almost
"always present and almost always useless "always present and almost always useless
let makeprg="tidy -e "..shellescape(expand('%'))." 2>&1 \\| grep -v '\<table\> lacks \"summary\" attribute'" let makeprg="tidy -e ".shellescape(expand('%'))." 2>&1 \\| grep -v '\<table\> lacks \"summary\" attribute'"
let errorformat='%Wline %l column %c - Warning: %m,%Eline %l column %c - Error: %m,%-G%.%#,%-G%.%#' let errorformat='%Wline %l column %c - Warning: %m,%Eline %l column %c - Error: %m,%-G%.%#,%-G%.%#'
let loclist = SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat }) let loclist = SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })