diff --git a/syntax_checkers/html.vim b/syntax_checkers/html.vim index e98a54a16..4aace2476 100644 --- a/syntax_checkers/html.vim +++ b/syntax_checkers/html.vim @@ -22,8 +22,8 @@ if g:syntastic_html_checker == "tidy" if executable("tidy") && executable("grep") runtime! syntax_checkers/html/tidy.vim endif -elseif g:syntastic_html_checker == "w3c" +elseif g:syntastic_html_checker == "w3" if executable("curl") && executable("sed") - runtime! syntax_checkers/html/w3c.vim + runtime! syntax_checkers/html/w3.vim endif endif diff --git a/syntax_checkers/html/tidy.vim b/syntax_checkers/html/tidy.vim index e7535a504..5e52f80d3 100644 --- a/syntax_checkers/html/tidy.vim +++ b/syntax_checkers/html/tidy.vim @@ -1,5 +1,5 @@ "============================================================================ -"File: html.vim +"File: tidy.vim "Description: Syntax checking plugin for syntastic.vim "Maintainer: Martin Grenfell "License: This program is free software. It comes without any warranty, diff --git a/syntax_checkers/html/w3c.vim b/syntax_checkers/html/w3.vim similarity index 98% rename from syntax_checkers/html/w3c.vim rename to syntax_checkers/html/w3.vim index 128ebc67b..032de3149 100644 --- a/syntax_checkers/html/w3c.vim +++ b/syntax_checkers/html/w3.vim @@ -1,5 +1,5 @@ "============================================================================ -"File: html.vim +"File: w3.vim "Description: Syntax checking plugin for syntastic.vim "Maintainer: Martin Grenfell "License: This program is free software. It comes without any warranty,