Skip to content

Commit 72ea633

Browse files
brammooldouglaskayama
authored andcommitted
patch 7.4.761 Problem: The request-background termcode implementation is incomplete. Solution: Add the missing pieces.
1 parent 0f1dfa5 commit 72ea633

3 files changed

Lines changed: 11 additions & 8 deletions

File tree

src/option.c

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2986,11 +2986,11 @@ static struct vimoption
29862986
#ifdef FEAT_VERTSPLIT
29872987
p_term("t_CV", T_CSV)
29882988
#endif
2989-
p_term("t_ut", T_UT)
29902989
p_term("t_da", T_DA)
29912990
p_term("t_db", T_DB)
29922991
p_term("t_DL", T_CDL)
29932992
p_term("t_dl", T_DL)
2993+
p_term("t_EI", T_CEI)
29942994
p_term("t_fs", T_FS)
29952995
p_term("t_IE", T_CIE)
29962996
p_term("t_IS", T_CIS)
@@ -3004,28 +3004,29 @@ static struct vimoption
30043004
p_term("t_ms", T_MS)
30053005
p_term("t_nd", T_ND)
30063006
p_term("t_op", T_OP)
3007+
p_term("t_RB", T_RBG)
30073008
p_term("t_RI", T_CRI)
30083009
p_term("t_RV", T_CRV)
3009-
p_term("t_u7", T_U7)
30103010
p_term("t_Sb", T_CSB)
3011-
p_term("t_Sf", T_CSF)
30123011
p_term("t_se", T_SE)
3012+
p_term("t_Sf", T_CSF)
3013+
p_term("t_SI", T_CSI)
30133014
p_term("t_so", T_SO)
3015+
p_term("t_SR", T_CSR)
30143016
p_term("t_sr", T_SR)
3015-
p_term("t_ts", T_TS)
30163017
p_term("t_te", T_TE)
30173018
p_term("t_ti", T_TI)
3019+
p_term("t_ts", T_TS)
3020+
p_term("t_u7", T_U7)
30183021
p_term("t_ue", T_UE)
30193022
p_term("t_us", T_US)
3023+
p_term("t_ut", T_UT)
30203024
p_term("t_vb", T_VB)
30213025
p_term("t_ve", T_VE)
30223026
p_term("t_vi", T_VI)
30233027
p_term("t_vs", T_VS)
30243028
p_term("t_WP", T_CWP)
30253029
p_term("t_WS", T_CWS)
3026-
p_term("t_SI", T_CSI)
3027-
p_term("t_EI", T_CEI)
3028-
p_term("t_SR", T_CSR)
30293030
p_term("t_xn", T_XN)
30303031
p_term("t_xs", T_XS)
30313032
p_term("t_ZH", T_CZH)

src/term.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1622,7 +1622,7 @@ set_termname(term)
16221622
{KS_TS, "ts"}, {KS_FS, "fs"},
16231623
{KS_CWP, "WP"}, {KS_CWS, "WS"},
16241624
{KS_CSI, "SI"}, {KS_CEI, "EI"},
1625-
{KS_U7, "u7"},
1625+
{KS_U7, "u7"}, {KS_RBG, "RB"},
16261626
{(enum SpecialKey)0, NULL}
16271627
};
16281628

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -756,6 +756,8 @@ static char *(features[]) =
756756

757757
static int included_patches[] =
758758
{ /* Add new patch number below this line */
759+
/**/
760+
761,
759761
/**/
760762
760,
761763
/**/

0 commit comments

Comments
 (0)