diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index 94d3ac4383aaa97d5a2e44b7689f6a860f3108fe..987d9e29eb279e0bad42e41367d9154bbe8fdda7 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -5200,6 +5200,9 @@ impl Editor { cx: &App, ) -> bool { maybe!({ + if self.read_only(cx) { + return Some(false); + } let provider = self.edit_prediction_provider()?; if !provider.is_enabled(&buffer, buffer_position, cx) { return Some(false);