blob: d85da7d1a70ac0211bb77288607b0cf21bed7e38 [file] [log] [blame]
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001" Vim compiler file
2" Compiler: Mono C# Compiler
3" Maintainer: Jarek Sobiecki <harijari@go2.pl>
4" Latest Revision: 2006-06-18
5
6if exists("current_compiler")
7 finish
8endif
9let current_compiler = "mcs"
10
11let s:cpo_save = &cpo
12set cpo-=C
13
14setlocal 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
23let &cpo = s:cpo_save
24unlet s:cpo_save