vimify
vimify copied to clipboard
Feature Request: List your own playlists
Would be great to have a command that lists all of your playlists, allowing you to select one to play.
@BachoSeven Added this feature in a fork if you want to try it out: https://github.com/benwoodward/vimify/tree/playlists
@benwoodward Nice! I think the process of generating the client auth token is easier now.
It works, but there's an offset in the selection of playlists, meaning <Enter>
actually plays the playlist above the cursor.
Other than that, is there a specific reason why the output of ListPlaylists()
is limited to 20 results? I raised the minimum to 50 and it works fine.
Also, when a playlist contains >=80 songs, vimify only queues the first 80 songs on the list; and if it has >=160 songs the it queues the first 160(excluding the first one). This, I cannot figure out why.
@BachoSeven Great, thanks for testing it.
It works, but there's an offset in the selection of playlists, meaning <Enter> actually plays the playlist above the cursor.
I have an idea about what causes this.
Other than that, is there a specific reason why the output of ListPlaylists() is limited to 20 results? I raised the minimum to 50 and it works fine.
I did raise the query limit to 50, but maybe it wasn't implemented properly. Thanks for flagging this.
Also, when a playlist contains >=80 songs, vimify only queues the first 80 songs on the list; and if it has >=160 songs the it queues the first 180(excluding the first one). This, I cannot figure out why.
Good catch! That's an odd one. Perhaps @HendrikPetertje has some insight into what could cause that. I'll look into it.
@BachoSeven I fixed the offset issue, and the 20 Playlist limit issue. Will look at the other one when I have more time.
wow nice! I will give this a look when I get out of the office today!
Are there updates on this issue?