]> granicus.if.org Git - vim/commitdiff
patch 8.0.1102: terminal window does not use Normal colors v8.0.1102
authorBram Moolenaar <Bram@vim.org>
Wed, 13 Sep 2017 22:00:44 +0000 (00:00 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 13 Sep 2017 22:00:44 +0000 (00:00 +0200)
Problem:    Terminal window does not use Normal colors.
Solution:   For the GUI and when 'termguicolors' is enabled, use the actual
            foreground and background colors for the terminal.  (Yasuhiro
            Matsumoto, closes #2067)
            Use the "Terminal" highlight group if defined.

src/proto/syntax.pro
src/syntax.c
src/terminal.c
src/version.c

index 7247c5174f13a6585df7965d877ae87bd01bcb4f..0f64ceaf8cbd501f407256f4debb81c936805f0d 100644 (file)
@@ -52,6 +52,7 @@ int syn_namen2id(char_u *linep, int len);
 int syn_check_group(char_u *pp, int len);
 int syn_id2attr(int hl_id);
 int syn_id2colors(int hl_id, guicolor_T *fgp, guicolor_T *bgp);
+void syn_id2cterm_bg(int hl_id, int *fgp, int *bgp);
 int syn_get_final_id(int hl_id);
 void highlight_gui_started(void);
 int highlight_changed(void);
index 78e2da8aed93b82015d0a53a5c98443d45663c2f..ab2b63e3df28a2176e6472de44dbb3d7d852e6ae 100644 (file)
@@ -9709,7 +9709,7 @@ syn_id2attr(int hl_id)
     return attr;
 }
 
-#ifdef FEAT_GUI
+#if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS) || defined(PROTO)
 /*
  * Get the GUI colors and attributes for a group ID.
  * NOTE: the colors will be INVALCOLOR when not set, the color otherwise.
@@ -9728,6 +9728,19 @@ syn_id2colors(int hl_id, guicolor_T *fgp, guicolor_T *bgp)
 }
 #endif
 
+#if defined(FEAT_TERMINAL) || defined(PROT)
+    void
+syn_id2cterm_bg(int hl_id, int *fgp, int *bgp)
+{
+    struct hl_group    *sgp;
+
+    hl_id = syn_get_final_id(hl_id);
+    sgp = &HL_TABLE()[hl_id - 1];          /* index is ID minus one */
+    *fgp = sgp->sg_cterm_fg - 1;
+    *bgp = sgp->sg_cterm_bg - 1;
+}
+#endif
+
 /*
  * Translate a group ID to the final group ID (following links).
  */
index cb74fcb03e2ae62def70176cf48f28c131c7766a..624d61c4389db8d1036d130d5857394180479850 100644 (file)
@@ -38,7 +38,6 @@
  * in tl_scrollback are no longer used.
  *
  * TODO:
- * - patch to use GUI or cterm colors for vterm. Yasuhiro, #2067
  * - patch to add tmap, jakalope (Jacob Askeland) #2073
  * - Redirecting output does not work on MS-Windows, Test_terminal_redir_file()
  *   is disabled.
@@ -1739,7 +1738,7 @@ color2index(VTermColor *color, int fg, int *boldp)
     else if (red == 128)
     {
        if (green == 128 && blue == 128)
-           return lookup_color(12, fg, boldp) + 1; /* high intensity black / dark grey */
+           return lookup_color(12, fg, boldp) + 1; /* dark grey */
     }
     else if (red == 255)
     {
@@ -2385,6 +2384,65 @@ term_get_attr(buf_T *buf, linenr_T lnum, int col)
     return cell2attr(cellattr->attrs, cellattr->fg, cellattr->bg);
 }
 
+static VTermColor ansi_table[16] = {
+  {  0,   0,   0}, /* black */
+  {224,   0,   0}, /* dark red */
+  {  0, 224,   0}, /* dark green */
+  {224, 224,   0}, /* dark yellow / brown */
+  {  0,   0, 224}, /* dark blue */
+  {224,   0, 224}, /* dark magenta */
+  {  0, 224, 224}, /* dark cyan */
+  {224, 224, 224}, /* light grey */
+
+  {128, 128, 128}, /* dark grey */
+  {255,  64,  64}, /* light red */
+  { 64, 255,  64}, /* light green */
+  {255, 255,  64}, /* yellow */
+  { 64,  64, 255}, /* light blue */
+  {255,  64, 255}, /* light magenta */
+  { 64, 255, 255}, /* light cyan */
+  {255, 255, 255}, /* white */
+};
+
+static int cube_value[] = {
+    0x00, 0x33, 0x66, 0x99, 0xCC, 0xFF,
+};
+
+static int grey_ramp[] = {
+    0x00, 0x0B, 0x16, 0x21, 0x2C, 0x37, 0x42, 0x4D, 0x58, 0x63, 0x6E, 0x79,
+    0x85, 0x90, 0x9B, 0xA6, 0xB1, 0xBC, 0xC7, 0xD2, 0xDD, 0xE8, 0xF3, 0xFF,
+};
+
+/*
+ * Convert a cterm color number 0 - 255 to RGB.
+ */
+    static void
+cterm_color2rgb(int nr, VTermColor *rgb)
+{
+    int idx;
+
+    if (nr < 16)
+    {
+       *rgb = ansi_table[nr];
+    }
+    else if (nr < 232)
+    {
+       /* 216 color cube */
+       idx = nr - 16;
+       rgb->blue  = cube_value[idx      % 6];
+       rgb->green = cube_value[idx / 6  % 6];
+       rgb->red   = cube_value[idx / 36 % 6];
+    }
+    else if (nr < 256)
+    {
+       /* 24 grey scale ramp */
+       idx = nr - 232;
+       rgb->blue  = grey_ramp[nr];
+       rgb->green = grey_ramp[nr];
+       rgb->red   = grey_ramp[nr];
+    }
+}
+
 /*
  * Create a new vterm and initialize it.
  */
@@ -2396,6 +2454,7 @@ create_vterm(term_T *term, int rows, int cols)
     VTermValue     value;
     VTermColor     *fg, *bg;
     int                    fgval, bgval;
+    int                    id;
 
     vterm = vterm_new(rows, cols);
     term->tl_vterm = vterm;
@@ -2404,12 +2463,13 @@ create_vterm(term_T *term, int rows, int cols)
     /* TODO: depends on 'encoding'. */
     vterm_set_utf8(vterm, 1);
 
-    /* Vterm uses a default black background.  Set it to white when
-     * 'background' is "light". */
     vim_memset(&term->tl_default_color.attrs, 0, sizeof(VTermScreenCellAttrs));
     term->tl_default_color.width = 1;
     fg = &term->tl_default_color.fg;
     bg = &term->tl_default_color.bg;
+
+    /* Vterm uses a default black background.  Set it to white when
+     * 'background' is "light". */
     if (*p_bg == 'l')
     {
        fgval = 0;
@@ -2422,6 +2482,76 @@ create_vterm(term_T *term, int rows, int cols)
     }
     fg->red = fg->green = fg->blue = fgval;
     bg->red = bg->green = bg->blue = bgval;
+
+    /* The "Terminal" highlight group overrules the defaults. */
+    id = syn_name2id((char_u *)"Terminal");
+
+    /* Use the actual color for the GUI and when 'guitermcolors' is set. */
+#if defined(FEAT_GUI) || defined(FEAT_TERMGUICOLORS)
+    if (0
+# ifdef FEAT_GUI
+           || gui.in_use
+# endif
+# ifdef FEAT_TERMGUICOLORS
+           || p_tgc
+# endif
+       )
+    {
+       guicolor_T          fg_rgb, bg_rgb;
+
+       if (id != 0)
+           syn_id2colors(id, &fg_rgb, &bg_rgb);
+
+# ifdef FEAT_GUI
+       if (gui.in_use)
+       {
+           if (fg_rgb == INVALCOLOR)
+               fg_rgb = gui.norm_pixel;
+           if (bg_rgb == INVALCOLOR)
+               bg_rgb = gui.back_pixel;
+       }
+#  ifdef FEAT_TERMGUICOLORS
+       else
+#  endif
+# endif
+# ifdef FEAT_TERMGUICOLORS
+       {
+           if (fg_rgb == INVALCOLOR)
+               fg_rgb = cterm_normal_fg_gui_color;
+           if (bg_rgb == INVALCOLOR)
+               bg_rgb = cterm_normal_bg_gui_color;
+       }
+# endif
+       if (fg_rgb != INVALCOLOR)
+       {
+           long_u rgb = GUI_MCH_GET_RGB(fg_rgb);
+
+           fg->red = (unsigned)(rgb >> 16);
+           fg->green = (unsigned)(rgb >> 8) & 255;
+           fg->blue = (unsigned)rgb & 255;
+       }
+       if (bg_rgb != INVALCOLOR)
+       {
+           long_u rgb = GUI_MCH_GET_RGB(bg_rgb);
+
+           bg->red = (unsigned)(rgb >> 16);
+           bg->green = (unsigned)(rgb >> 8) & 255;
+           bg->blue = (unsigned)rgb & 255;
+       }
+    }
+    else
+#endif
+    if (id != 0 && t_colors >= 16)
+    {
+       int cterm_fg, cterm_bg;
+
+       syn_id2cterm_bg(id, &cterm_fg, &cterm_bg);
+       if (cterm_fg >= 0)
+           cterm_color2rgb(cterm_fg, fg);
+       if (cterm_bg >= 0)
+           cterm_color2rgb(cterm_bg, bg);
+    }
+
     vterm_state_set_default_colors(vterm_obtain_state(vterm), fg, bg);
 
     /* Required to initialize most things. */
index 259b576ec075d1858325adf9d8b56fe1fcc383d7..6acd6453ab6253dc28cb6be060dc33337c36a519 100644 (file)
@@ -769,6 +769,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1102,
 /**/
     1101,
 /**/