File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -801,9 +801,6 @@ static void
801
801
curs -> wrapnext = false;
802
802
}
803
803
804
- if (term .insert && width > 0 )
805
- insert_char (width );
806
-
807
804
bool single_width = false;
808
805
if (cfg .charwidth >= 10 || cs_single_forced ) {
809
806
if (width > 1 ) {
@@ -815,6 +812,9 @@ static void
815
812
}
816
813
}
817
814
815
+ if (term .insert && width > 0 )
816
+ insert_char (width );
817
+
818
818
switch (width ) {
819
819
when 1 : // Normal character.
820
820
term_check_boundary (curs -> x , curs -> y );
@@ -2401,6 +2401,9 @@ static void
2401
2401
else
2402
2402
child_printf ("\e[>77;%u;0c" , DECIMAL_VERSION );
2403
2403
}
2404
+ when CPAIR ('>' , 'q' ): /* Report terminal name and version */
2405
+ if (!arg0 )
2406
+ child_printf ("\eP>|%s %s\e\\" , APPNAME , VERSION );
2404
2407
when 'a' : /* HPR: move right N cols */
2405
2408
move (curs -> x + arg0_def1 , curs -> y , 1 );
2406
2409
when 'C' : /* CUF: Cursor right */
You can’t perform that action at this time.
0 commit comments