diff options
Diffstat (limited to 'src/handler.rs')
| -rwxr-xr-x | src/handler.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/handler.rs b/src/handler.rs index c3b001e..2a18a1c 100755 --- a/src/handler.rs +++ b/src/handler.rs @@ -284,6 +284,11 @@ pub fn handle_key_events(key_event: KeyEvent, app: &mut App) -> AppResult<()> { app.inputmode = InputMode::toggle_editing_states(&app.inputmode); } + // Remove from Current Playlsit + KeyCode::Backspace => { + app.remove_from_current_playlist(); + } + _ => {} } } |
