This commit is contained in:
2025-11-13 07:03:35 -07:00
parent 8a7bbc4bab
commit 1288ac98d8
2 changed files with 78 additions and 24 deletions

View File

@@ -29,6 +29,8 @@ pub struct App {
pub error_msg: ErrorMessage,
pub vars: HashMap<String, String>,
pub screen: ScreenSpace,
// this could probably be a normal array
pub marks: HashMap<char, (usize, usize)>,
}
impl Widget for &App {
@@ -198,6 +200,7 @@ impl App {
error_msg: ErrorMessage::none(),
vars: HashMap::new(),
screen: ScreenSpace::new(),
marks: HashMap::new(),
}
}