aboutsummaryrefslogtreecommitdiff
path: root/runtime/compiler/tidy.vim
diff options
context:
space:
mode:
authorShougo Matsushita <Shougo.Matsu@gmail.com>2016-10-15 11:40:26 +0900
committerShougo Matsushita <Shougo.Matsu@gmail.com>2016-10-15 11:51:46 +0900
commit9d087206ab390cdc74d826759cd1dd083dbae081 (patch)
treee5b791d48e987df98f3bd6991544d4f4ab572cc0 /runtime/compiler/tidy.vim
parent79d77da8a06bf91a77cc96a1f1fba30bbd991a23 (diff)
downloadrneovim-9d087206ab390cdc74d826759cd1dd083dbae081.tar.gz
rneovim-9d087206ab390cdc74d826759cd1dd083dbae081.tar.bz2
rneovim-9d087206ab390cdc74d826759cd1dd083dbae081.zip
vim-patch:0648142
Update runtime files. https://github.com/vim/vim/commit/06481427005a9dae39721087df94855f7d4d1feb
Diffstat (limited to 'runtime/compiler/tidy.vim')
-rw-r--r--runtime/compiler/tidy.vim10
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/compiler/tidy.vim b/runtime/compiler/tidy.vim
index 56baee2224..75be8b83d9 100644
--- a/runtime/compiler/tidy.vim
+++ b/runtime/compiler/tidy.vim
@@ -1,7 +1,7 @@
" Vim compiler file
" Compiler: HTML Tidy
" Maintainer: Doug Kearns <dougkearns@gmail.com>
-" Last Change: 2013 Jul 7
+" Last Change: 2016 Apr 21
if exists("current_compiler")
finish
@@ -12,8 +12,8 @@ if exists(":CompilerSet") != 2 " older Vim always used :setlocal
command -nargs=* CompilerSet setlocal <args>
endif
-CompilerSet makeprg=tidy\ -quiet\ -errors\ --gnu-emacs\ yes\ %
+CompilerSet makeprg=tidy\ -quiet\ -errors\ --gnu-emacs\ yes\ %:S
-" sample warning: foo.html:8:1: Warning: inserting missing 'foobar' element
-" sample error: foo.html:9:2: Error: <foobar> is not recognized!
-CompilerSet errorformat=%f:%l:%c:\ Error:%m,%f:%l:%c:\ Warning:%m,%-G%.%#
+" foo.html:8:1: Warning: inserting missing 'foobar' element
+" foo.html:9:2: Error: <foobar> is not recognized!
+CompilerSet errorformat=%f:%l:%c:\ %trror:%m,%f:%l:%c:\ %tarning:%m,%-G%.%#