2004-06-13 20:20:40 +00:00
|
|
|
" Vim compiler file
|
|
|
|
" Compiler: HTML Tidy
|
2013-07-09 15:44:17 +02:00
|
|
|
" Maintainer: Doug Kearns <dougkearns@gmail.com>
|
2024-04-04 22:00:58 +02:00
|
|
|
" Last Change: 2024 Apr 03
|
2004-06-13 20:20:40 +00:00
|
|
|
|
|
|
|
if exists("current_compiler")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let current_compiler = "tidy"
|
|
|
|
|
2021-01-25 21:14:57 +01:00
|
|
|
let s:cpo_save = &cpo
|
|
|
|
set cpo&vim
|
2004-06-13 20:20:40 +00:00
|
|
|
|
2021-01-25 21:14:57 +01:00
|
|
|
CompilerSet makeprg=tidy\ -quiet\ -errors\ --gnu-emacs\ yes
|
|
|
|
CompilerSet errorformat=%f:%l:%c:\ %trror:\ %m,
|
|
|
|
\%f:%l:%c:\ %tarning:\ %m,
|
|
|
|
\%f:%l:%c:\ %tnfo:\ %m,
|
|
|
|
\%f:%l:%c:\ %m,
|
|
|
|
\%-G%.%#
|
|
|
|
|
|
|
|
let &cpo = s:cpo_save
|
|
|
|
unlet s:cpo_save
|