From dabb17a2ef2360695e514d2fd998e9473aa32408 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Sun, 27 Feb 2022 09:48:46 -0700 Subject: [PATCH] Clone editor's searchable state on split --- crates/editor/src/editor.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/editor/src/editor.rs b/crates/editor/src/editor.rs index c6e5f2b026..f8f623485a 100644 --- a/crates/editor/src/editor.rs +++ b/crates/editor/src/editor.rs @@ -850,6 +850,7 @@ impl Editor { clone.scroll_position = self.scroll_position; clone.scroll_top_anchor = self.scroll_top_anchor.clone(); clone.nav_history = Some(nav_history); + clone.searchable = self.searchable; clone }