blob: cbc34248882003c46c575b60c75d694592f182ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
To: vim_dev@googlegroups.com
Subject: Patch 8.1.0997
Fcc: outbox
From: Bram Moolenaar <Bram@moolenaar.net>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
------------
Patch 8.1.0997
Problem: Using GUI colors in vim.exe when 'termguicolors' is off.
Solution: Add condition for 'termguicolors' set. (Ken Takata, closes #4078)
Files: src/os_win32.c
*** ../vim-8.1.0996/src/os_win32.c 2019-03-02 10:13:36.796974835 +0100
--- src/os_win32.c 2019-03-07 06:39:34.779317778 +0100
***************
*** 7844,7850 ****
return;
id = syn_name2id((char_u *)"Normal");
! if (id > 0)
syn_id2colors(id, &fg, &bg);
if (fg == INVALCOLOR)
{
--- 7844,7850 ----
return;
id = syn_name2id((char_u *)"Normal");
! if (id > 0 && p_tgc)
syn_id2colors(id, &fg, &bg);
if (fg == INVALCOLOR)
{
*** ../vim-8.1.0996/src/version.c 2019-03-05 13:26:49.752005833 +0100
--- src/version.c 2019-03-07 06:40:14.999021501 +0100
***************
*** 781,782 ****
--- 781,784 ----
{ /* Add new patch number below this line */
+ /**/
+ 997,
/**/
--
Bumper sticker: Honk if you love peace and quiet.
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|