Use fewer fancy cursors even for vim users (#11041)

Conrad Irwin created

Release Notes:

- N/A

Change summary

crates/vim/src/editor_events.rs | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

Detailed changes

crates/vim/src/editor_events.rs 🔗

@@ -55,7 +55,9 @@ fn blurred(editor: View<Editor>, cx: &mut WindowContext) {
             }
         }
         editor.update(cx, |editor, cx| {
-            editor.set_cursor_shape(language::CursorShape::Hollow, cx);
+            if editor.use_modal_editing() {
+                editor.set_cursor_shape(language::CursorShape::Hollow, cx);
+            }
         });
     });
 }