Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ List of supported commands:
| `RestartIntegratedClient` | restart the integrated librespot client (`streaming` feature only) | `R` |
| `ShowActionsOnSelectedItem` | open a popup showing actions on a selected item | `g a`, `C-space` |
| `ShowActionsOnCurrentTrack` | open a popup showing actions on the current track | `a` |
| `AddSelectedItemToQueue` | add the selected item to queue | `Z` |
| `AddSelectedItemToQueue` | add the selected item to queue | `Z`, `C-z` |
| `FocusNextWindow` | focus the next focusable window (if any) | `tab` |
| `FocusPreviousWindow` | focus the previous focusable window (if any) | `backtab` |
| `SwitchTheme` | open a popup for switching theme | `T` |
Expand Down
4 changes: 4 additions & 0 deletions spotify_player/src/config/keymap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ impl Default for KeymapConfig {
key_sequence: "z".into(),
command: Command::Queue,
},
Keymap {
key_sequence: "C-z".into(),
command: Command::AddSelectedItemToQueue,
},
Keymap {
key_sequence: "Z".into(),
command: Command::AddSelectedItemToQueue,
Expand Down