diff src/structs.h @ 26193:c83460a14407 v8.2.3628

patch 8.2.3628: looking terminal colors is a bit slow Commit: https://github.com/vim/vim/commit/87fd0924e2d85213cc111ee7a5122f92216a37c7 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 20 13:47:45 2021 +0000 patch 8.2.3628: looking terminal colors is a bit slow Problem: Looking terminal colors is a bit slow. Solution: Cache the terminal colors. (closes https://github.com/vim/vim/issues/9130, closes https://github.com/vim/vim/issues/9058)
author Bram Moolenaar <Bram@vim.org>
date Sat, 20 Nov 2021 15:00:05 +0100
parents f2392648af3e
children 365e7f083f02
line wrap: on
line diff
--- a/src/structs.h
+++ b/src/structs.h
@@ -123,6 +123,14 @@ typedef struct {
 #endif
 #define COLOR_INVALID(x) ((x) == INVALCOLOR || (x) == CTERMCOLOR)
 
+#ifdef FEAT_TERMINAL
+# include "libvterm/include/vterm.h"
+typedef struct {
+    VTermColor	fg;
+    VTermColor	bg;
+} termcellcolor_T;
+#endif
+
 /*
  * marks: positions in a file
  * (a normal mark is a lnum/col pair, the same as a file position)
@@ -3619,6 +3627,9 @@ struct window_S
     int		w_nrwidth;	    // width of 'number' and 'relativenumber'
 				    // column being used
 #endif
+#ifdef FEAT_TERMINAL
+    termcellcolor_T w_term_wincolor;	 // cache for term color of 'wincolor'
+#endif
 
     /*
      * === end of cached values ===