neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

xmlwf.vim (404B)


      1 " Vim Compiler File
      2 " Compiler:	xmlwf
      3 " Maintainer:	Robert Rowsome <rowsome@wam.umd.edu>
      4 " Last Change:	2019 Jul 23
      5 "		2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
      6 
      7 if exists("current_compiler")
      8  finish
      9 endif
     10 let current_compiler = "xmlwf"
     11 
     12 let s:cpo_save = &cpo
     13 set cpo&vim
     14 
     15 CompilerSet makeprg=xmlwf\ %:S
     16 
     17 CompilerSet errorformat=%f:%l%c:%m
     18 
     19 let &cpo = s:cpo_save
     20 unlet s:cpo_save