diff --git a/crates/vim/src/editor_events.rs b/crates/vim/src/editor_events.rs index 3fccf2eba1..ee5f4cde09 100644 --- a/crates/vim/src/editor_events.rs +++ b/crates/vim/src/editor_events.rs @@ -51,6 +51,9 @@ fn blurred(editor: View, cx: &mut WindowContext) { vim.clear_operator(cx); } } + editor.update(cx, |editor, cx| { + editor.set_cursor_shape(language::CursorShape::Hollow, cx); + }); }); }