xref: /vim-8.2.3635/runtime/compiler/cs.vim (revision 17fb0e89)
1" Vim compiler file
2" Compiler:	Microsoft Visual Studio C#
3" Maintainer:	Zhou YiChao ([email protected])
4" Previous Maintainer:	Joseph H. Yao ([email protected])
5" Last Change:	2011 Apr 21
6
7if exists("current_compiler")
8  finish
9endif
10let current_compiler = "cs"
11
12if exists(":CompilerSet") != 2		" older Vim always used :setlocal
13  command -nargs=* CompilerSet setlocal <args>
14endif
15
16CompilerSet errorformat&
17CompilerSet errorformat+=%f(%l\\,%v):\ %t%*[^:]:\ %m,
18            \%trror%*[^:]:\ %m,
19            \%tarning%*[^:]:\ %m
20
21CompilerSet makeprg=csc\ %
22