onsgmls.vim (453B)
1 " Vim compiler file 2 " Compiler: onsgmls 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 = "onsgmls" 11 12 let s:cpo_save = &cpo 13 set cpo-=C 14 15 CompilerSet makeprg=onsgmls\ -s\ %:S 16 17 CompilerSet errorformat=onsgmls:%f:%l:%c:%t:%m, 18 \onsgmls:%f:%l:%c:%m 19 20 let &cpo = s:cpo_save 21 unlet s:cpo_save