Don't use fancy cursors for non-vim people (#11010)

Conrad Irwin created

Release Notes:

- N/A

Change summary

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

Detailed changes

crates/vim/src/editor_events.rs 🔗

@@ -42,6 +42,9 @@ fn focused(editor: View<Editor>, cx: &mut WindowContext) {
 
 fn blurred(editor: View<Editor>, cx: &mut WindowContext) {
     Vim::update(cx, |vim, cx| {
+        if !vim.enabled {
+            return;
+        }
         if let Some(previous_editor) = vim.active_editor.clone() {
             vim.stop_recording_immediately(NormalBefore.boxed_clone());
             if previous_editor