Remap delete key

This commit is contained in:
Ian Keane 2025-11-25 19:33:54 -05:00
parent c61e66b1f6
commit 2abc99ff3b
2 changed files with 2 additions and 2 deletions

View file

@ -180,7 +180,7 @@ impl App {
(KeyCode::Char('n'), _) => self.start_new_entry(),
(KeyCode::Char('p'), _) => self.start_reassign_project(),
(KeyCode::Char('v'), _) => self.start_log_view()?,
(KeyCode::Char('d'), _) => self.delete_current_item()?,
(KeyCode::Char('x'), _) => self.delete_current_item()?,
_ => {}
},
_ => {}

View file

@ -341,7 +341,7 @@ fn render_help(frame: &mut Frame, app: &App) {
"",
"Main Commands:",
"Enter - Start/stop timer",
"d - Delete task from list",
"x - Delete task from list",
"p - Reassign project name",
"v - View Watson log",
"Ctrl+e - Edit tasks config file",