blob: 0c265b3de53c5728921f86170a0410d8f7dff08d [file] [log] [blame]
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00001" Vim compiler file
Enno18d730d2024-03-31 18:37:05 +02002" Compiler: Mono C# Compiler
3" Maintainer: Jarek Sobiecki <harijari@go2.pl>
4" Contributors: Peter Collingbourne and Enno Nagel
5" Last Change: 2024 Mar 29
Yinzuo Jiangcec44ea2024-04-06 01:59:39 +08006" 2024 Apr 05 by The Vim Project (removed :CompilerSet definition)
Bram Moolenaarc81e5e72007-05-05 18:24:42 +00007
8if exists("current_compiler")
9 finish
10endif
11let current_compiler = "mcs"
12
13let s:cpo_save = &cpo
14set cpo-=C
15
Enno18d730d2024-03-31 18:37:05 +020016CompilerSet makeprg=mcs
17CompilerSet errorformat=
Bram Moolenaar6c35bea2012-07-25 17:49:10 +020018 \%D%.%#Project\ \"%f/%[%^/\"]%#\"%.%#,
19 \%X%.%#Done\ building\ project\ \"%f/%[%^/\"]%#\"%.%#,
20 \%-G%\\s%.%#,
21 \%E%f(%l):\ error\ CS%n:%m,
22 \%W%f(%l):\ warning\ CS%n:%m,
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000023 \%E%f(%l\\,%c):\ error\ CS%n:%m,
24 \%W%f(%l\\,%c):\ warning\ CS%n:%m,
25 \%E%>syntax\ error\\,%m,%Z%f(%l\\,%c):\ error\ CS%n:%m,
26 \%D%*\\a[%*\\d]:\ Entering\ directory\ `%f',
27 \%X%*\\a[%*\\d]:\ Leaving\ directory\ `%f',
28 \%DMaking\ %*\\a\ in\ %f,
Bram Moolenaar6c35bea2012-07-25 17:49:10 +020029 \%-G%.%#
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000030
31let &cpo = s:cpo_save
32unlet s:cpo_save