change shortcuts for keyboard without page up/down keys

This commit is contained in:
NunoSempere 2025-01-14 13:41:24 +01:00
parent 9dda522a26
commit 2af3abcf8c

View File

@ -125,8 +125,10 @@ static struct {
{ CTRL | SFT, KEY(KP_Page_Up), prev_tab }, // use SFT just to show one can
{ CTRL | SFT, KEY(KP_Page_Down), next_tab },
{ CTRL | SFT, KEY(Page_Up), prev_tab },
// working hypothesis: Page_UP vs KP_Page_Up might depend on whether the user has a numpad
{ CTRL | SFT, KEY(Page_Down), next_tab },
// working hypothesis: Page_UP vs KP_Page_Up might depend on whether the user has a numpad
{ CTRL, KEY(Tab), next_tab },
{ CTRL, KEY(b), prev_tab },
{ CTRL, KEY(t), new_tab },
{ CTRL, KEY(w), close_tab },