[GH-ISSUE #424] Jump to current playlist command #173

Closed
opened 2026-02-28 14:47:32 +03:00 by kerem · 3 comments
Owner

Originally created by @maujim on GitHub (Apr 30, 2020).
Original GitHub issue: https://github.com/Rigellute/spotify-tui/issues/424

Is it possible to add in a command to jump to the current playlist, similar to the jump to album and jump to artist's album commands?

Originally created by @maujim on GitHub (Apr 30, 2020). Original GitHub issue: https://github.com/Rigellute/spotify-tui/issues/424 Is it possible to add in a command to jump to the current playlist, similar to the jump to album and jump to artist's album commands?
kerem 2026-02-28 14:47:32 +03:00
Author
Owner

@Rigellute commented on GitHub (May 4, 2020):

That is not currently possible, but sounds like it would be a nice feature.

I just had a quick look through the spotify docs and didn't find a "playlist_id" in the playback context which we would need to jump to the playlist.

However, a workaround might be to parse out the id from the context uri when the property type == "playlist".

Example context from the api

"context": {
    "external_urls" : {
      "spotify" : "http://open.spotify.com/user/spotify/playlist/49znshcYJROspEqBoHg3Sv"
    },
    "href" : "https://api.spotify.com/v1/users/spotify/playlists/49znshcYJROspEqBoHg3Sv",
    "type" : "playlist",
    "uri" : "spotify:user:spotify:playlist:49znshcYJROspEqBoHg3Sv"
  }
}

This could be a good first issue!

<!-- gh-comment-id:623379102 --> @Rigellute commented on GitHub (May 4, 2020): That is not currently possible, but sounds like it would be a nice feature. I just had a quick look through the spotify docs and didn't find a "playlist_id" in the playback context which we would need to jump to the playlist. However, a workaround might be to parse out the id from the context uri when the property `type == "playlist"`. Example context from the api ```json "context": { "external_urls" : { "spotify" : "http://open.spotify.com/user/spotify/playlist/49znshcYJROspEqBoHg3Sv" }, "href" : "https://api.spotify.com/v1/users/spotify/playlists/49znshcYJROspEqBoHg3Sv", "type" : "playlist", "uri" : "spotify:user:spotify:playlist:49znshcYJROspEqBoHg3Sv" } } ``` This could be a good first issue!
Author
Owner

@Drewsapple commented on GitHub (May 27, 2020):

I think #474 implemented this feature. Ready to close?

<!-- gh-comment-id:634997276 --> @Drewsapple commented on GitHub (May 27, 2020): I think #474 implemented this feature. Ready to close?
Author
Owner

@Rigellute commented on GitHub (May 28, 2020):

Yep, thanks for the feature request @maujim and thanks for implementing @Drewsapple

<!-- gh-comment-id:635245214 --> @Rigellute commented on GitHub (May 28, 2020): Yep, thanks for the feature request @maujim and thanks for implementing @Drewsapple
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/spotify-tui#173
No description provided.