1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-23 23:21:08 +03:00

wezterm: fix cursor artifacts in neovim when using blinking cursor

Problem reported here:
47dc81c8d9 (commitcomment-39881097)
This commit is contained in:
Wez Furlong 2020-06-13 10:32:26 -07:00
parent e70a58e7f3
commit aa1bc7bc06

View File

@ -2755,10 +2755,10 @@ impl TermWindow {
},
)
} else {
(shape, cursor.visibility)
(shape, CursorVisibility::Visible)
}
} else {
(cursor.shape, cursor.visibility)
(cursor.shape, CursorVisibility::Hidden)
};
let (fg_color, bg_color) =