1
0
forked from aniani/vim

updated for version 7.0188

This commit is contained in:
Bram Moolenaar
2006-01-26 22:25:15 +00:00
parent 51156d5a87
commit 17c7c01170
12 changed files with 214 additions and 52 deletions

View File

@@ -3446,13 +3446,13 @@ term_cursor_shape()
if (State & INSERT)
{
if (showing_insert_mode != TRUE)
out_str(T_CSI); /* disable cursor */
out_str(T_CSI); /* Insert mode cursor */
showing_insert_mode = TRUE;
}
else
{
if (showing_insert_mode != FALSE)
out_str(T_CEI); /* disable cursor */
out_str(T_CEI); /* non-Insert mode cursor */
showing_insert_mode = FALSE;
}
}