Change volume adjustment key bindings

Use the much more obvious ones.
This commit is contained in:
Přemysl Eric Janouch 2023-05-30 15:15:20 +02:00
parent 14dba91dd1
commit f05be01fba
Signed by: p
GPG Key ID: A0420B94F92B9493
3 changed files with 6 additions and 4 deletions

2
NEWS
View File

@ -15,6 +15,8 @@ Unreleased
* Added Readline-like M-u, M-l, M-c editor bindings
* Changed volume adjustment bindings to use +/- keys
2.0.0 (2022-09-03)

View File

@ -117,8 +117,8 @@ as in the snippet above. To replace the default volume control bindings, use:
....
normal = {
"M-PageUp" = "pulse-volume-up"
"M-PageDown" = "pulse-volume-down"
"+" = "pulse-volume-up"
"-" = "pulse-volume-down"
}
....

View File

@ -3073,8 +3073,8 @@ g_normal_defaults[] =
{ "Space", ACTION_MPD_TOGGLE },
{ "C-Space", ACTION_MPD_STOP },
{ "u", ACTION_MPD_UPDATE_DB },
{ "M-PageUp", ACTION_MPD_VOLUME_UP },
{ "M-PageDown", ACTION_MPD_VOLUME_DOWN },
{ "+", ACTION_MPD_VOLUME_UP },
{ "-", ACTION_MPD_VOLUME_DOWN },
},
g_editor_defaults[] =
{