diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-04-28 19:02:44 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-04-28 19:02:44 +0200 |
commit | 8e5af3e531b986985e2be05e7be652119e76889f (patch) | |
tree | fc070684f7cd2d32222d94e180f9ff3b9b2e3f2e /runtime/compiler | |
parent | b453a53b59b55a399f0ff2e473cba796d95a2a0b (diff) | |
download | vim-git-8e5af3e531b986985e2be05e7be652119e76889f.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/compiler')
-rw-r--r-- | runtime/compiler/cs.vim | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/runtime/compiler/cs.vim b/runtime/compiler/cs.vim index 5b75d6d2a..7ba0b609f 100644 --- a/runtime/compiler/cs.vim +++ b/runtime/compiler/cs.vim @@ -1,7 +1,8 @@ " Vim compiler file -" Compiler: ms C# -" Maintainer: Joseph H. Yao (hyao@sina.com) -" Last Change: 2004 Mar 27 +" Compiler: Microsoft Visual Studio C# +" Maintainer: Zhou YiChao (broken.zhou@gmail.com) +" Previous Maintainer: Joseph H. Yao (hyao@sina.com) +" Last Change: 2011 Apr 21 if exists("current_compiler") finish @@ -12,8 +13,9 @@ if exists(":CompilerSet") != 2 " older Vim always used :setlocal command -nargs=* CompilerSet setlocal <args> endif -" default errorformat CompilerSet errorformat& +CompilerSet errorformat+=%f(%l\\,%v):\ %t%*[^:]:\ %m, + \%trror%*[^:]:\ %m, + \%tarning%*[^:]:\ %m -" default make CompilerSet makeprg=csc\ % |