remove backspace keymap
This commit is contained in:
parent
c51d9cc12e
commit
1da0b85fa9
|
|
@ -28,7 +28,7 @@ rmptui is a minimal tui mpd client made with rust.
|
|||
| `3` | Go to playlists view |
|
||||
| `Enter`/`l`/`Right` | Add song/playlist to current playlist |
|
||||
| `a` | Append the song to current playing queue |
|
||||
| `Space`/`BackSpace` | Delete the highlighted song from queue |
|
||||
| `Space` | Delete the highlighted song from queue |
|
||||
| `f` | Go forwards |
|
||||
| `b` | Go backwards |
|
||||
| `>` | Play next song from queue |
|
||||
|
|
|
|||
|
|
@ -155,7 +155,7 @@ pub fn handle_key_events(key_event: KeyEvent, app: &mut App) -> AppResult<()> {
|
|||
}
|
||||
|
||||
// Add or Remove from Current Playlist
|
||||
KeyCode::Char(' ') | KeyCode::Backspace => {
|
||||
KeyCode::Char(' ') => {
|
||||
app.handle_add_or_remove_from_current_playlist()?;
|
||||
}
|
||||
_ => {}
|
||||
|
|
|
|||
Reference in New Issue