From 168e69ae0156e2b59e1d44b6cadbf7359d5285e9 Mon Sep 17 00:00:00 2001 From: Sam <130783534+Sam-programs@users.noreply.github.com> Date: Tue, 9 Apr 2024 11:05:15 +0300 Subject: [PATCH] fix(tui): don't set cursor color when there is none (#28236) --- src/nvim/tui/tui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index 840d3bf446..29354a4f07 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -1237,7 +1237,7 @@ static void tui_set_mode(TUIData *tui, ModeShape mode) // We interpret "inverse" as "default" (no termcode for "inverse"...). // Hopefully the user's default cursor color is inverse. unibi_out_ext(tui, tui->unibi_ext.reset_cursor_color); - } else { + } else if (!tui->want_invisible && aep.rgb_bg_color >= 0) { char hexbuf[8]; if (tui->set_cursor_color_as_str) { snprintf(hexbuf, 7 + 1, "#%06x", aep.rgb_bg_color);