mcs.vim 864 B

12345678910111213141516171819202122232425262728293031
  1. " Vim compiler file
  2. " Compiler: Mono C# Compiler
  3. " Maintainer: Jarek Sobiecki <harijari@go2.pl>
  4. " Last Updated By: Peter Collingbourne
  5. " Latest Revision: 2012 Jul 19
  6. if exists("current_compiler")
  7. finish
  8. endif
  9. let current_compiler = "mcs"
  10. let s:cpo_save = &cpo
  11. set cpo-=C
  12. setlocal errorformat=
  13. \%D%.%#Project\ \"%f/%[%^/\"]%#\"%.%#,
  14. \%X%.%#Done\ building\ project\ \"%f/%[%^/\"]%#\"%.%#,
  15. \%-G%\\s%.%#,
  16. \%E%f(%l):\ error\ CS%n:%m,
  17. \%W%f(%l):\ warning\ CS%n:%m,
  18. \%E%f(%l\\,%c):\ error\ CS%n:%m,
  19. \%W%f(%l\\,%c):\ warning\ CS%n:%m,
  20. \%E%>syntax\ error\\,%m,%Z%f(%l\\,%c):\ error\ CS%n:%m,
  21. \%D%*\\a[%*\\d]:\ Entering\ directory\ `%f',
  22. \%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f',
  23. \%DMaking\ %*\\a\ in\ %f,
  24. \%-G%.%#
  25. let &cpo = s:cpo_save
  26. unlet s:cpo_save