mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-29 21:49:33 +00:00
Use fewer fancy cursors even for vim users (#11041)
Release Notes: - N/A
This commit is contained in:
parent
7f229dc202
commit
eb7bd0b98a
1 changed files with 3 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue