WIP simplify

This commit is contained in:
2026-01-29 09:38:41 +01:00
parent 8efafffaff
commit 73db616139
11 changed files with 434 additions and 291 deletions

View File

@@ -54,6 +54,7 @@ pub struct EditorContext {
pub editor: Editor,
pub selection_anchor: Option<usize>,
pub copied_steps: Option<CopiedSteps>,
pub show_stack: bool,
}
#[derive(Clone)]
@@ -94,6 +95,7 @@ impl Default for EditorContext {
editor: Editor::new(),
selection_anchor: None,
copied_steps: None,
show_stack: false,
}
}
}