aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/cursor_shape.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-04-30 14:36:40 +0200
committerGitHub <noreply@github.com>2017-04-30 14:36:40 +0200
commit4afc93b926dc14365db4bad4cd4030d5d5a69747 (patch)
treef3d8be1c04a86dd576b6f238d408bac923169a41 /src/nvim/cursor_shape.c
parent26a479ae41135a6efc6a77bb72ccb5a3c092fce9 (diff)
parentc1d3bcc1842d7ca4edb514ef162696afd910f532 (diff)
downloadrneovim-4afc93b926dc14365db4bad4cd4030d5d5a69747.tar.gz
rneovim-4afc93b926dc14365db4bad4cd4030d5d5a69747.tar.bz2
rneovim-4afc93b926dc14365db4bad4cd4030d5d5a69747.zip
Merge #6588 from justinmk/guicursor
Diffstat (limited to 'src/nvim/cursor_shape.c')
-rw-r--r--src/nvim/cursor_shape.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/cursor_shape.c b/src/nvim/cursor_shape.c
index dcc680f806..e302d5aa4c 100644
--- a/src/nvim/cursor_shape.c
+++ b/src/nvim/cursor_shape.c
@@ -142,9 +142,9 @@ char_u *parse_shape_opt(int what)
{
// Set the defaults, for the missing parts
shape_table[idx].shape = SHAPE_BLOCK;
- shape_table[idx].blinkwait = 700L;
- shape_table[idx].blinkon = 400L;
- shape_table[idx].blinkoff = 250L;
+ shape_table[idx].blinkwait = 0L;
+ shape_table[idx].blinkon = 0L;
+ shape_table[idx].blinkoff = 0L;
}
}