view runtime/compiler/xmllint.vim @ 5049:72fcf674e545 v7.3.1268

updated for version 7.3.1268 Problem: ACL support doesn't work when when compiled with MingW. Solution: Support ACL on MingW. (Ken Takata)
author Bram Moolenaar <bram@vim.org>
date Sat, 29 Jun 2013 15:40:04 +0200
parents a5352e73dc00
children f7add3891e95
line wrap: on
line source

" Vim compiler file
" Compiler:	xmllint
" Maintainer:	Doug Kearns <dougkearns@gmail.com>
" Last Change:	2013 Jun 1

if exists("current_compiler")
  finish
endif
let current_compiler = "xmllint"

if exists(":CompilerSet") != 2		" older Vim always used :setlocal
  command -nargs=* CompilerSet setlocal <args>
endif

let s:cpo_save = &cpo
set cpo-=C

CompilerSet makeprg=xmllint\ --valid\ --noout\ 

CompilerSet errorformat=%+E%f:%l:\ %.%#\ error\ :\ %m,
		    \%+W%f:%l:\ %.%#\ warning\ :\ %m,
		    \%-Z%p^,
		    \%-G%.%#

let &cpo = s:cpo_save
unlet s:cpo_save