mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 17:35:50 +03:00
[GH-ISSUE #126] Select multiple tracks / execute action on multiple tracks #55
Labels
No labels
bug
documentation
enhancement
good first issue
help wanted
pull-request
question
third-party
third-party
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/spotify-player#55
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @bartlibert on GitHub (Feb 9, 2023).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/126
I'd like to be able to select multiple tracks and then execute the same action (if appropriate) on all those tracks.
For example:
Press 'v' to select a track.
Press 'v' to select another track.
Press 'v' again multiple times to select more tracks.
Press 'g a' for ShowActionsOnSelectedItem
Select "AddToQueue" -> all selected tracks are added to the queue
@aome510 commented on GitHub (Feb 11, 2023):
I've thought about implementing multi-selection before. One of my use cases is to start playback from the selected tracks so that it can be treated as a mini-playlist.
That said, I decided not to mainly because it may(?) complicate the current program's structure. Regarding your use case, isn't it better to just implement https://github.com/aome510/spotify-player/issues/125 and execute that shortcut on the focused track multiple times?
@bartlibert commented on GitHub (Feb 13, 2023):
No problem, that would cover most cases I guess.