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