How to support presentation remote that sends weird keys and set custom key bindings #255
-
Is your feature request related to a problem? Please describe. Describe the solution you'd like Describe alternatives you've considered
Additional context |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Your exact wishes have already come true! You can edit the config file directly. Its actual location should be displayed in the Help > About dialog, and should be For previous / next pages, the shortcuts you want to extend are pympress/pympress/share/defaults.conf Lines 177 to 179 in 3696763 Gtk seems to know about F19 and F20, so the syntax should be [shortcuts]
next-page = Right Down Page_Down space <alt>F20
prev-page = Left Up Page_Up <alt>F19 |
Beta Was this translation helpful? Give feedback.
-
Nice! I was looking in the readme on github and found nothing about editable key bindings. Maybe this bug is really about more obvious documentation in that case? I see now that there is a link to configuration file documentation (sorry about missing this). But it would have helped lazy or stressed people to have a mention of key bindings directly in the readme with a pointer to the config file. |
Beta Was this translation helpful? Give feedback.
-
Yeah documentation is improvable definitely. Especially making features more discoverable is not very easy. The shortcuts configurability is now mentioned in the README (since 9a5fb29). |
Beta Was this translation helpful? Give feedback.
Your exact wishes have already come true! You can edit the config file directly. Its actual location should be displayed in the Help > About dialog, and should be
%APPDATA%/pympress.ini
on Windows and~/.config/pympress
on Linux.For previous / next pages, the shortcuts you want to extend are
next-page
andprev-page
, which should be the 2 first ones:pympress/pympress/share/defaults.conf
Lines 177 …