diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-08-20 15:05:15 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-08-20 15:05:15 +0200 |
commit | ce1c32780a7d0ae5110eab627fcbfd4a11e5eb52 (patch) | |
tree | b36fcad15e6c83a3ef71e1ca2a27c5d028993944 /src/option.c | |
parent | 37b9b8199792882e3e0e7e19e230ea6442b9e857 (diff) | |
download | vim-git-ce1c32780a7d0ae5110eab627fcbfd4a11e5eb52.tar.gz |
patch 8.0.0973: initial info about blinking cursor is wrongv8.0.0973
Problem: initial info about blinking cursor is wrong
Solution: Invert the blink flag. Add t_VS to stop a blinking cursor.
Diffstat (limited to 'src/option.c')
-rw-r--r-- | src/option.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/option.c b/src/option.c index a65149785..48e12736d 100644 --- a/src/option.c +++ b/src/option.c @@ -3157,6 +3157,8 @@ static struct vimoption options[] = p_term("t_AL", T_CAL) p_term("t_al", T_AL) p_term("t_bc", T_BC) + p_term("t_BE", T_BE) + p_term("t_BD", T_BD) p_term("t_cd", T_CD) p_term("t_ce", T_CE) p_term("t_cl", T_CL) @@ -3173,13 +3175,11 @@ static struct vimoption options[] = p_term("t_db", T_DB) p_term("t_DL", T_CDL) p_term("t_dl", T_DL) + p_term("t_EC", T_CEC) p_term("t_EI", T_CEI) p_term("t_fs", T_FS) + p_term("t_GP", T_CGP) p_term("t_IE", T_CIE) - p_term("t_SC", T_CSC) - p_term("t_EC", T_CEC) - p_term("t_SH", T_CSH) - p_term("t_RS", T_CRS) p_term("t_IS", T_CIS) p_term("t_ke", T_KE) p_term("t_ks", T_KS) @@ -3193,10 +3193,13 @@ static struct vimoption options[] = p_term("t_op", T_OP) p_term("t_RB", T_RBG) p_term("t_RI", T_CRI) + p_term("t_RS", T_CRS) p_term("t_RV", T_CRV) p_term("t_Sb", T_CSB) + p_term("t_SC", T_CSC) p_term("t_se", T_SE) p_term("t_Sf", T_CSF) + p_term("t_SH", T_CSH) p_term("t_SI", T_CSI) p_term("t_so", T_SO) p_term("t_SR", T_CSR) @@ -3211,9 +3214,9 @@ static struct vimoption options[] = p_term("t_vb", T_VB) p_term("t_ve", T_VE) p_term("t_vi", T_VI) + p_term("t_VS", T_CVS) p_term("t_vs", T_VS) p_term("t_WP", T_CWP) - p_term("t_GP", T_CGP) p_term("t_WS", T_CWS) p_term("t_xn", T_XN) p_term("t_xs", T_XS) @@ -3221,8 +3224,6 @@ static struct vimoption options[] = p_term("t_ZR", T_CZR) p_term("t_8f", T_8F) p_term("t_8b", T_8B) - p_term("t_BE", T_BE) - p_term("t_BD", T_BD) /* terminal key codes are not in here */ |