diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-26 01:43:03 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-04-30 13:44:31 +0200 |
commit | d349f610ac9010cecb550c33fbab632b4e7946ca (patch) | |
tree | 2181dcc1fff40871fc40e7c9f3307ea1323e8d60 /src/nvim/cursor_shape.c | |
parent | 0df1b6655be5385c9cbb70dca1c042c6447ec50b (diff) | |
download | rneovim-d349f610ac9010cecb550c33fbab632b4e7946ca.tar.gz rneovim-d349f610ac9010cecb550c33fbab632b4e7946ca.tar.bz2 rneovim-d349f610ac9010cecb550c33fbab632b4e7946ca.zip |
'guicursor': No color/blink by default
Closes #6577
Diffstat (limited to 'src/nvim/cursor_shape.c')
-rw-r--r-- | src/nvim/cursor_shape.c | 6 |
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; } } |