1" Vim Compiler File 2" Compiler: xmlwf 3" Maintainer: Robert Rowsome <[email protected]> 4" Last Change: 2019 Jul 23 5 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 18CompilerSet makeprg=xmlwf\ %:S 19 20CompilerSet errorformat=%f:%l%c:%m 21 22let &cpo = s:cpo_save 23unlet s:cpo_save 24