mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-13 11:32:58 +01:00
wezterm: add pgup/pgdwn keybinds
This commit is contained in:
parent
6ef9f64084
commit
4c46507804
1 changed files with 12 additions and 0 deletions
|
@ -50,6 +50,18 @@ local keys = {
|
|||
mode = "SwapWithActive",
|
||||
},
|
||||
},
|
||||
|
||||
-- scrolling
|
||||
{
|
||||
key = "PageUp",
|
||||
mods = "ALT",
|
||||
action = wt.action.ScrollByPage(-1),
|
||||
},
|
||||
{
|
||||
key = "PageDown",
|
||||
mods = "ALT",
|
||||
action = wt.action.ScrollByPage(1),
|
||||
},
|
||||
}
|
||||
|
||||
local directions = {
|
||||
|
|
Loading…
Reference in a new issue