summaryrefslogtreecommitdiff
path: root/src/option.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-08-19 19:40:50 +0200
committerBram Moolenaar <Bram@vim.org>2017-08-19 19:40:50 +0200
commit3eee06e7d4c3a8e2dbb2577a1eef0e0f108e0288 (patch)
treee12dd15999d5dd73645f2276842ff5f09c89a4bf /src/option.c
parent683b7967253ecd44476a5a01d857271c0d3ff4f4 (diff)
downloadvim-git-3eee06e7d4c3a8e2dbb2577a1eef0e0f108e0288.tar.gz
patch 8.0.0965: not restoring cursor shape after it was set in a terminalv8.0.0965
Problem: The cursor shape is not reset after it was changed in a terminal. Solution: Request the original cursor shape and restore it. Add t_RS. Do not add t_SH for now, it does not work properly.
Diffstat (limited to 'src/option.c')
-rw-r--r--src/option.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/option.c b/src/option.c
index 0bcf21692..a65149785 100644
--- a/src/option.c
+++ b/src/option.c
@@ -3179,6 +3179,7 @@ static struct vimoption options[] =
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)