cs.vim (640B)
1 " Vim compiler file 2 " Compiler: Microsoft Visual Studio C# 3 " Maintainer: Yichao Zhou (broken.zhou@gmail.com) 4 " Previous Maintainer: Joseph H. Yao (hyao@sina.com) 5 " Last Change: Jul 22, 2019 6 " 2024 Apr 03 by The Vim Project (removed :CompilerSet definition) 7 8 if exists("current_compiler") 9 finish 10 endif 11 let current_compiler = "cs" 12 let s:keepcpo= &cpo 13 set cpo&vim 14 15 CompilerSet errorformat& 16 CompilerSet errorformat+=%f(%l\\,%v):\ %t%*[^:]:\ %m, 17 \%trror%*[^:]:\ %m, 18 \%tarning%*[^:]:\ %m 19 20 CompilerSet makeprg=csc\ %:S 21 22 let &cpo = s:keepcpo 23 unlet s:keepcpo