Mercurial > vim
annotate runtime/compiler/cs.vim @ 15539:ba876ced4f1f v8.1.0777
patch 8.1.0777: Win32: using pipes for channel does not work well
commit https://github.com/vim/vim/commit/b091f30bf38eacb31b9d8c97c82c7e0af9866301
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 19 14:37:00 2019 +0100
patch 8.1.0777: Win32: using pipes for channel does not work well
Problem: Win32: using pipes for channel does not work well.
Solution: Use a larger buffer and handle overlaps. (Yasuhiro Matsumoto,
closes #3782)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 19 Jan 2019 14:45:06 +0100 |
parents | d1e4abe8342c |
children | 2704c4e3e20a |
rev | line source |
---|---|
7 | 1 " Vim compiler file |
2788 | 2 " Compiler: Microsoft Visual Studio C# |
3 " Maintainer: Zhou YiChao (broken.zhou@gmail.com) | |
4 " Previous Maintainer: Joseph H. Yao (hyao@sina.com) | |
3496
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2788
diff
changeset
|
5 " Last Change: 2012 Apr 30 |
7 | 6 |
7 if exists("current_compiler") | |
8 finish | |
9 endif | |
10 let current_compiler = "cs" | |
3496
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2788
diff
changeset
|
11 let s:keepcpo= &cpo |
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2788
diff
changeset
|
12 set cpo&vim |
7 | 13 |
14 if exists(":CompilerSet") != 2 " older Vim always used :setlocal | |
15 command -nargs=* CompilerSet setlocal <args> | |
16 endif | |
17 | |
18 CompilerSet errorformat& | |
2788 | 19 CompilerSet errorformat+=%f(%l\\,%v):\ %t%*[^:]:\ %m, |
20 \%trror%*[^:]:\ %m, | |
21 \%tarning%*[^:]:\ %m | |
7 | 22 |
23 CompilerSet makeprg=csc\ % | |
3496
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2788
diff
changeset
|
24 |
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2788
diff
changeset
|
25 let &cpo = s:keepcpo |
d1e4abe8342c
Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents:
2788
diff
changeset
|
26 unlet s:keepcpo |