diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-10-24 13:17:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-24 13:17:41 +0200 |
commit | fb503d73da49e26a3e44a07cd7c857d9fda9d035 (patch) | |
tree | d7f30d325c9649b4bfa9bf6d6823eddf882aeb25 /runtime/compiler/tidy.vim | |
parent | 43309d1993a9affc8d6b73fbd4721e6256c28712 (diff) | |
parent | c91a0dca02fda46c4b4edbbdfab1a191b2e4fcbd (diff) | |
download | rneovim-fb503d73da49e26a3e44a07cd7c857d9fda9d035.tar.gz rneovim-fb503d73da49e26a3e44a07cd7c857d9fda9d035.tar.bz2 rneovim-fb503d73da49e26a3e44a07cd7c857d9fda9d035.zip |
Merge #5483 from Shougo/vim-0648142
vim-patch 0648142, 91c4937, 06d2d38, 2685212, 269f595
Diffstat (limited to 'runtime/compiler/tidy.vim')
-rw-r--r-- | runtime/compiler/tidy.vim | 10 |
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%.%# |