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 0f0f230 commit dc5471dCopy full SHA for dc5471d
2 files changed
src/term.c
@@ -4562,9 +4562,10 @@ check_termcode(
4562
&& STRNCMP(tp + extra - 2, "1;95;0c", 7) == 0)
4563
is_not_xterm = TRUE;
4564
# endif
4565
- /* Gnome Terminal.app sends 1;4402;0, assuming any
4566
- * version number over 4000 is not an xterm. */
4567
- if (col >= 4000)
+ /* Gnome Terminal.app sends 1;3801;0 or 1;4402;0,
+ * assuming any version number over 3000 is not an
+ * xterm. */
4568
+ if (col >= 3000)
4569
4570
4571
/* Only request the cursor style if t_SH and t_RS are
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
+ 1021,
774
/**/
775
1020,
776
0 commit comments