diff src/window.c @ 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 fa8161b003f6
children b93e176e7998
line wrap: on
line diff
--- a/src/window.c
+++ b/src/window.c
@@ -1422,6 +1422,9 @@ win_init(win_T *newp, win_T *oldp, int f
 #ifdef FEAT_SYN_HL
     check_colorcolumn(newp);
 #endif
+#ifdef FEAT_TERMINAL
+    term_update_wincolor(newp);
+#endif
 }
 
 /*
@@ -3684,6 +3687,9 @@ win_init_empty(win_T *wp)
 #if defined(FEAT_SYN_HL) || defined(FEAT_SPELL)
     wp->w_s = &wp->w_buffer->b_s;
 #endif
+#ifdef FEAT_TERMINAL
+    term_reset_wincolor(wp);
+#endif
 }
 
 /*