blob: c606586870baa1bf9be308de66db309683d04655 [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>
Bram Moolenaar6c35bea2012-07-25 17:49:10 +02004" Last Updated By: Peter Collingbourne
5" Latest Revision: 2012 Jul 19
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00006
7if exists("current_compiler")
8 finish
9endif
10let current_compiler = "mcs"
11
12let s:cpo_save = &cpo
13set cpo-=C
14
15setlocal errorformat=
Bram Moolenaar6c35bea2012-07-25 17:49:10 +020016 \%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,
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000021 \%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,
Bram Moolenaar6c35bea2012-07-25 17:49:10 +020027 \%-G%.%#
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000028
29let &cpo = s:cpo_save
30unlet s:cpo_save