mirror of
https://github.com/aome510/spotify-player.git
synced 2026-04-26 09:25:49 +03:00
[GH-ISSUE #203] Search in playlist has some difficulties #1039
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#1039
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 @Icelk on GitHub (May 28, 2023).
Original GitHub issue: https://github.com/aome510/spotify-player/issues/203
Describe the bug
When you search in a playlist (to e.g. cue songs), the filtered list of songs don't persist.
To Reproduce
Search in a playlist.
Expected behavior
When searching, Enter should return the focus to the playlist instead of playing the hovered song. To clear the search, press
/again and remove the search text.Environment
-F notify,image,lyric-finder,pulseaudio-backend,streaming,media-control --no-default-featuresThanks for the awesome app!
@aome510 commented on GitHub (May 28, 2023):
This is intended behavior. Personally, I don't like the idea of "enter should return the focus to the playlist ... press / again and remove the search text".
The search popup only captures character inputs, so you can still use
up,down,ctrl-{char}, etc to select filtered items in the playlist.@Icelk commented on GitHub (May 30, 2023):
I noticed that too. How do you recommend doing things when wanting to queue multiple songs with the same search term? Because after entering the song's context menu, the search is reset.
@aome510 commented on GitHub (May 30, 2023):
For add to queue, there is a command to do that:
AddSelectedItemToQueue, so you don't need to go through the track menu. The command is binded by default toZ, which doesn't work well with search, so you'll need to bind a different key to the command. For example,Then you can use
ctrl-zto add an item to queue while keeping the search popup open.@Icelk commented on GitHub (May 30, 2023):
Thank you!