stub help modal; cleanup

This commit is contained in:
🪞👃🪞 2025-04-06 16:22:12 +03:00
parent b157a87647
commit 4619d0ea76
9 changed files with 78 additions and 68 deletions

View file

@ -20,17 +20,10 @@ pub struct Taggart {
#[derive(Debug)]
pub enum Mode {
Help,
Edit {
value: Arc<str>,
index: usize,
},
Save {
value: u8,
},
Quit {
value: u8,
},
Help { page: u8 },
Edit { value: Arc<str>, index: usize, },
Save { choice: u8, },
Quit { choice: u8, },
}
impl Taggart {