jonniek / mpv-playlistmanager

Mpv lua script to create and manage playlists
The Unlicense
559 stars 42 forks source link

Keyboard + does not work when set to + key for viewing Playlist #151

Open Cerastia opened 1 week ago

Cerastia commented 1 week ago

The contents of the playlistmanager.conf file are as follows.

 script-opts\playlistmanager.conf
      # main key to show playlist
      key_showplaylist=+ SHIFT+ENTER

Is there any other way or workaround?

jonniek commented 5 days ago

For me the above configuration allows opening the playlist with + key.

What exactly do you mean by Keyboard + does not work. Do you mean:

    • key doesn't open playlist
  1. some other keybinding of + is overriden
    • key does nothing at all in mpv
Cerastia commented 5 days ago

I mean + key doesn't open playlist and does nothing at all in mpv.

Unfortunately, I don't know the difference between 1 and 3.

jonniek commented 5 days ago

Can you run mpv --idle --force-window --input-test in the terminal and then press your + button. What does the OSD print for it?

I'm guessing based on your issue it will say Key + is bound to: (Nothing). If it says something other than + then that means you should use that as the keybinding instead of +. If it says Key + is bound to: script-binding playlistmanager/showplaylist then the keybinding should be working correctly.

verygoodlee commented 4 days ago

if you use the numpad +, you need to bind KP_ADD key instead of + key, because numpad + - / key was remapped to `KP_` keys in mpv-player/mpv#14660