Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 1 | " Vim compiler file |
Enno | 18d730d | 2024-03-31 18:37:05 +0200 | [diff] [blame] | 2 | " 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 Jiang | cec44ea | 2024-04-06 01:59:39 +0800 | [diff] [blame] | 6 | " 2024 Apr 05 by The Vim Project (removed :CompilerSet definition) |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 7 | |
| 8 | if exists("current_compiler") |
| 9 | finish |
| 10 | endif |
| 11 | let current_compiler = "mcs" |
| 12 | |
| 13 | let s:cpo_save = &cpo |
| 14 | set cpo-=C |
| 15 | |
Enno | 18d730d | 2024-03-31 18:37:05 +0200 | [diff] [blame] | 16 | CompilerSet makeprg=mcs |
| 17 | CompilerSet errorformat= |
Bram Moolenaar | 6c35bea | 2012-07-25 17:49:10 +0200 | [diff] [blame] | 18 | \%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 Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 23 | \%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 Moolenaar | 6c35bea | 2012-07-25 17:49:10 +0200 | [diff] [blame] | 29 | \%-G%.%# |
Bram Moolenaar | c81e5e7 | 2007-05-05 18:24:42 +0000 | [diff] [blame] | 30 | |
| 31 | let &cpo = s:cpo_save |
| 32 | unlet s:cpo_save |