xmllint.vim 654 B

1234567891011121314151617181920212223242526272829
  1. " Vim compiler file
  2. " Compiler: Libxml2 Command-Line Tool
  3. " Maintainer: Doug Kearns <dougkearns@gmail.com>
  4. " Last Change: 2020 Jul 30
  5. if exists("current_compiler")
  6. finish
  7. endif
  8. let current_compiler = "xmllint"
  9. if exists(":CompilerSet") != 2 " older Vim always used :setlocal
  10. command -nargs=* CompilerSet setlocal <args>
  11. endif
  12. let s:cpo_save = &cpo
  13. set cpo&vim
  14. CompilerSet makeprg=xmllint\ --valid\ --noout
  15. CompilerSet errorformat=%E%f:%l:\ %.%#\ error\ :\ %m,
  16. \%W%f:%l:\ %.%#\ warning\ :\ %m,
  17. \%-Z%p^,
  18. \%C%.%#,
  19. \%terror:\ %m,
  20. \%tarning:\ %m,
  21. \%-G%.%#
  22. let &cpo = s:cpo_save
  23. unlet s:cpo_save