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