se.vim 622 B

123456789101112131415161718192021222324252627
  1. " Vim compiler file
  2. " Compiler: se (Liberty Eiffel Compiler)
  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 = "se"
  9. let s:cpo_save = &cpo
  10. set cpo-=C
  11. CompilerSet makeprg=se\ c
  12. CompilerSet errorformat=%W******\ Warning:\ %m,
  13. \%E******\ Fatal\ Error:\ %m,
  14. \%E******\ Error:\ %m,
  15. \%ZLine\ %l\ column\ %c\ in\ %.%#\ (%f)\ %\\=:,
  16. \%ZLine\ %l\ columns\ %c\\,\ %\\d%\\+\ %.%#\ (%f)\ %\\=:,
  17. \%+C%*[^\ ]%.%#,
  18. \%-GThe\ source\ lines\ involved,
  19. \%-G%.%#
  20. let &cpo = s:cpo_save
  21. unlet s:cpo_save