wezterm: add pgup/pgdwn keybinds

This commit is contained in:
LordMZTE 2023-01-29 14:35:58 +01:00
parent 6ef9f64084
commit 4c46507804
Signed by: LordMZTE
GPG key ID: B64802DC33A64FF6

View file

@ -50,6 +50,18 @@ local keys = {
mode = "SwapWithActive", mode = "SwapWithActive",
}, },
}, },
-- scrolling
{
key = "PageUp",
mods = "ALT",
action = wt.action.ScrollByPage(-1),
},
{
key = "PageDown",
mods = "ALT",
action = wt.action.ScrollByPage(1),
},
} }
local directions = { local directions = {