xo.vim 495 B

1234567891011121314151617181920212223
  1. " Vim compiler file
  2. " Compiler: XO
  3. " Maintainer: Doug Kearns <dougkearns@gmail.com>
  4. " Last Change: 2024 Apr 03
  5. if exists("current_compiler")
  6. finish
  7. endif
  8. let current_compiler = "xo"
  9. let s:cpo_save = &cpo
  10. set cpo&vim
  11. " CompilerSet makeprg=npx\ xo\ --reporter\ compact
  12. CompilerSet makeprg=xo\ --reporter\ compact
  13. CompilerSet errorformat=%f:\ line\ %l\\,\ col\ %c\\,\ %trror\ %m,
  14. \%f:\ line\ %l\\,\ col\ %c\\,\ %tarning\ %m,
  15. \%-G%.%#
  16. let &cpo = s:cpo_save
  17. unlet s:cpo_save