reorder phrases in phrase list

This commit is contained in:
🪞👃🪞 2024-10-14 22:26:02 +03:00
parent ea88622081
commit 7a6bdf2764
2 changed files with 14 additions and 0 deletions

View file

@ -51,6 +51,8 @@ impl Handle<Tui> for PhrasePool<Tui> {
key!(KeyCode::Char('d')) => { self.insert_dup() },
key!(KeyCode::Char('c')) => { self.randomize_color() },
key!(KeyCode::Char('n')) => { self.begin_rename() },
key!(KeyCode::Char(',')) => { self.move_up() },
key!(KeyCode::Char('.')) => { self.move_down() },
_ => return Ok(None),
}
}