blob: 3de9d08d5512e1288426dc792bff8d52ba9939ea [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim Compiler File
2" Compiler: xmlwf
3" Maintainer: Robert Rowsome <rowsome@wam.umd.edu>
Bram Moolenaar54775062019-07-31 21:07:14 +02004" Last Change: 2019 Jul 23
Bram Moolenaar071d4272004-06-13 20:20:40 +00005
6if exists("current_compiler")
7 finish
8endif
9let current_compiler = "xmlwf"
10
11let s:cpo_save = &cpo
12set cpo&vim
13
14if exists(":CompilerSet") != 2 " older Vim always used :setlocal
15 command -nargs=* CompilerSet setlocal <args>
16endif
17
Bram Moolenaar54775062019-07-31 21:07:14 +020018CompilerSet makeprg=xmlwf\ %:S
Bram Moolenaar071d4272004-06-13 20:20:40 +000019
20CompilerSet errorformat=%f:%l%c:%m
21
22let &cpo = s:cpo_save
23unlet s:cpo_save