We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4db2554 commit 3c37a8eCopy full SHA for 3c37a8e
2 files changed
src/term.c
@@ -3780,8 +3780,12 @@ term_cursor_color(char_u *color)
3780
int
3781
blink_state_is_inverted()
3782
{
3783
+#ifdef FEAT_TERMRESPONSE
3784
return rbm_status == STATUS_GOT && rcs_status == STATUS_GOT
3785
&& initial_cursor_blink != initial_cursor_shape_blink;
3786
+#else
3787
+ return FALSE;
3788
+#endif
3789
}
3790
3791
/*
src/version.c
@@ -769,6 +769,8 @@ static char *(features[]) =
769
770
static int included_patches[] =
771
{ /* Add new patch number below this line */
772
+/**/
773
+ 1010,
774
/**/
775
1009,
776
0 commit comments