From 2af3abcf8c950323835217b0bf2d7441f2dc2311 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Tue, 14 Jan 2025 13:41:24 +0100 Subject: [PATCH] change shortcuts for keyboard without page up/down keys --- config.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config.h b/config.h index 36eb800..282e666 100644 --- a/config.h +++ b/config.h @@ -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 },