home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / runtime / compiler / mcs.vim < prev    next >
Encoding:
Text File  |  2010-08-15  |  613 b   |  25 lines

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