Add some default keyboard shortcuts
Alpine 3.24 Success
Arch Linux AUR Success
OpenBSD 7.8 Success

This commit is contained in:
2026-08-08 14:33:23 +02:00
parent 29f970d135
commit a842b82849
2 changed files with 8 additions and 0 deletions
+2
View File
@@ -3,6 +3,8 @@ Unreleased
* The "elapsed" attribute is now used for "remaining" as well.
For the typical theme, remove "remaining" and reverse your "elapsed".
* Added "b", "f", "p", "s" bindings for back/forward seek, play/pause, stop
* AppKit: the application now shows up in Now Playing,
and as a consequence responds to media keys
+6
View File
@@ -3229,10 +3229,14 @@ g_normal_defaults[] =
{ ">", ACTION_MPD_NEXT },
{ "Left", ACTION_MPD_PREVIOUS },
{ "Right", ACTION_MPD_NEXT },
{ "b", ACTION_MPD_BACKWARD }, // ncmpcpp
{ "f", ACTION_MPD_FORWARD }, // ncmpcpp
{ "M-Left", ACTION_MPD_BACKWARD },
{ "M-Right", ACTION_MPD_FORWARD },
{ "h", ACTION_MPD_PREVIOUS },
{ "l", ACTION_MPD_NEXT },
{ "p", ACTION_MPD_TOGGLE }, // ncmpcpp
{ "s", ACTION_MPD_STOP }, // ncmpcpp
{ "Space", ACTION_MPD_TOGGLE },
{ "C-Space", ACTION_MPD_STOP },
{ "u", ACTION_MPD_UPDATE_DB },
@@ -3251,6 +3255,8 @@ g_editor_defaults[] =
{ "C-f", ACTION_EDITOR_F_CHAR },
{ "M-b", ACTION_EDITOR_B_WORD },
{ "M-f", ACTION_EDITOR_F_WORD },
{ "M-Left", ACTION_EDITOR_B_WORD },
{ "M-Right", ACTION_EDITOR_F_WORD },
{ "Home", ACTION_EDITOR_HOME },
{ "End", ACTION_EDITOR_END },
{ "C-a", ACTION_EDITOR_HOME },