onsgmls.vim 453 B

12345678910111213141516171819202122
  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. if exists("current_compiler")
  7. finish
  8. endif
  9. let current_compiler = "onsgmls"
  10. let s:cpo_save = &cpo
  11. set cpo-=C
  12. CompilerSet makeprg=onsgmls\ -s\ %:S
  13. CompilerSet errorformat=onsgmls:%f:%l:%c:%t:%m,
  14. \onsgmls:%f:%l:%c:%m
  15. let &cpo = s:cpo_save
  16. unlet s:cpo_save