Mercurial > vim
annotate src/msvc2017.bat @ 32981:2415680a2554 v9.0.1783
commit b557f4898208105b674df605403cac1b1292707b
Author: zeertzjq <zeertzjq@outlook.com>
Date: Tue Aug 22 22:07:34 2023 +0200
patch 9.0.1783: Display issues with virt text smoothscroll and showbreak
Problem: Wrong display with wrapping virtual text or unprintable chars,
'showbreak' and 'smoothscroll'.
Solution: Don't skip cells taken by 'showbreak' in screen lines before
"w_skipcol". Combined "n_skip" and "skip_cells".
closes: #12597
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 24 Aug 2023 07:47:10 +0200 |
parents | 54dda39c5bb3 |
children |
rev | line source |
---|---|
30385
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 @echo off |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 rem To be used on MS-Windows for Visual C++ 2017. |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 rem See INSTALLpc.txt for information. |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 rem |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 rem Usage: |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 rem For x86 builds run this with "x86" option: |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 rem msvc2017 x86 |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
8 rem For x64 builds run this with "x86_amd64" option: |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 rem msvc2017 x86_amd64 |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 set "VSVEROPT=-version [15.0^,16.0^)" |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 call "%~dp0msvc-latest.bat" %* |
54dda39c5bb3
patch 9.0.0528: MS-Windows: no batch files for more recent MSVC versions
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 set VSVEROPT= |