From c7fa8dbc70daa291de42a579d6102da3aaa5988d Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Fri, 9 Jun 2023 18:28:01 +0300 Subject: [PATCH] React with inlay updates on excerpt events --- crates/editor/src/editor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index b73a02d9c3..2d5224de32 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -7250,11 +7250,11 @@ impl Editor { predecessor: *predecessor, excerpts: excerpts.clone(), }); - false + true } multi_buffer::Event::ExcerptsRemoved { ids } => { cx.emit(Event::ExcerptsRemoved { ids: ids.clone() }); - false + true } multi_buffer::Event::Reparsed => { cx.emit(Event::Reparsed);