Skip to content

Commit

Permalink
change shortcuts for keyboard without page up/down keys
Browse files Browse the repository at this point in the history
  • Loading branch information
NunoSempere committed Jan 14, 2025
1 parent 9dda522 commit 2af3abc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 },

Expand Down

0 comments on commit 2af3abc

Please sign in to comment.