endif
NOTE: When Vim exits the shape for Normal mode will remain. The shape from
before Vim started will not be restored.
+
+For Windows Terminal you can use something like this: >
+ " Note: This should be set after `set termguicolors` or `set t_Co=256`.
+ if &term =~ 'xterm' || &term == 'win32'
+ " Use DECSCUSR escape sequences
+ let &t_SI = "\e[5 q" " blink bar
+ let &t_SR = "\e[3 q" " blink underline
+ let &t_EI = "\e[1 q" " blink block
+ let &t_ti ..= "\e[1 q" " blink block
+ let &t_te ..= "\e[0 q" " default (depends on terminal, normally blink block)
+ endif
+
{not available when compiled without the |+cursorshape| feature}
*termcap-title*
static void
mch_set_cursor_shape(int thickness)
{
- CONSOLE_CURSOR_INFO ConsoleCursorInfo;
- ConsoleCursorInfo.dwSize = thickness;
- ConsoleCursorInfo.bVisible = s_cursor_visible;
+ if (USE_VTP || USE_WT)
+ {
+ if (*T_CSI == NUL)
+ {
+ // If 't_SI' is not set, use the default cursor styles.
+ if (thickness < 50)
+ vtp_printf("\033[3 q"); // underline
+ else
+ vtp_printf("\033[0 q"); // default
+ }
+ }
+ else
+ {
+ CONSOLE_CURSOR_INFO ConsoleCursorInfo;
+ ConsoleCursorInfo.dwSize = thickness;
+ ConsoleCursorInfo.bVisible = s_cursor_visible;
- SetConsoleCursorInfo(g_hConOut, &ConsoleCursorInfo);
- if (s_cursor_visible)
- SetConsoleCursorPosition(g_hConOut, g_coord);
+ SetConsoleCursorInfo(g_hConOut, &ConsoleCursorInfo);
+ if (s_cursor_visible)
+ SetConsoleCursorPosition(g_hConOut, g_coord);
+ }
}
void
}
# endif
}
+ else if (s[0] == ESC && len >= 3-1 && s[1] == '[')
+ {
+ int l = 2;
+
+ if (isdigit(s[l]))
+ l++;
+ if (s[l] == ' ' && s[l + 1] == 'q')
+ {
+ // DECSCUSR (cursor style) sequences
+ if (USE_VTP || USE_WT)
+ vtp_printf("%.*s", l + 2, s); // Pass through
+ s += l + 2;
+ len -= l + 1;
+ }
+ }
else
{
// Write a single character
if (argc == 0)
{
sgrfgr = sgrbgr = -1;
- vtp_printf("033[m");
+ vtp_printf("\033[m");
return;
}