From 4cedcf3ee7b198217958cafd9e44ee1278e49a17 Mon Sep 17 00:00:00 2001 From: Jeremy Cantrell Date: Sun, 26 Sep 2010 02:48:43 +0800 Subject: [PATCH] Too many '.' --- syntax_checkers/html.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax_checkers/html.vim b/syntax_checkers/html.vim index e9d66742..f0bd43c9 100644 --- a/syntax_checkers/html.vim +++ b/syntax_checkers/html.vim @@ -23,7 +23,7 @@ function! SyntaxCheckers_html_GetLocList() "grep out the ' lacks "summary" attribute' since it is almost "always present and almost always useless - let makeprg="tidy -e "..shellescape(expand('%'))." 2>&1 \\| grep -v '\ lacks \"summary\" attribute'" + let makeprg="tidy -e ".shellescape(expand('%'))." 2>&1 \\| grep -v '\ lacks \"summary\" attribute'" let errorformat='%Wline %l column %c - Warning: %m,%Eline %l column %c - Error: %m,%-G%.%#,%-G%.%#' let loclist = SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat })