editor: Disable edit predictions in read-only buffers (#26804)
Closes #26797 Release Notes: - Fixed edit predictions appearing in read-only buffers. Co-authored-by: Marshall Bowers <git@maxdeviant.com>
This commit is contained in:
co-authored by
Marshall Bowers
parent
7a888de9f5
commit
96b747e31d
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user