Mercurial > vim
annotate runtime/compiler/msbuild.vim @ 32433:151dbe17df6c v9.0.1548
patch 9.0.1548: CI: check in sound-dummy module may throw an error
Commit: https://github.com/vim/vim/commit/ff40b625a693cf5094abe76b77655f13ad48739b
Author: Christian Brabandt <cb@256bit.org>
Date: Sat May 13 11:54:47 2023 +0100
patch 9.0.1548: CI: check in sound-dummy module may throw an error
Problem: CI: check in sound-dummy module may throw an error.
Solution: Check whether apt-cache can show the package description.
(Christian Brabandt, closes #12390)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 13 May 2023 13:00:04 +0200 |
parents | eb6ab7e78925 |
children | e1df51f68736 |
rev | line source |
---|---|
4437 | 1 " Vim compiler file |
2 " Compiler: Microsoft Visual Studio C# | |
3 " Maintainer: Chiel ten Brinke (ctje92@gmail.com) | |
4 " Last Change: 2013 May 13 | |
5 | |
6 if exists("current_compiler") | |
7 finish | |
8 endif | |
9 let current_compiler = "msbuild" | |
10 let s:keepcpo= &cpo | |
11 set cpo&vim | |
12 | |
13 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
14 command -nargs=* CompilerSet setlocal <args> | |
15 endif | |
16 | |
17 CompilerSet errorformat=\ %#%f(%l\\\,%c):\ %m | |
18 CompilerSet makeprg=msbuild\ /nologo\ /v:q\ /property:GenerateFullPaths=true | |
19 | |
20 let &cpo = s:keepcpo | |
21 unlet s:keepcpo |