From 24893c706a7372933b4b365e8e1d04fe0f0d09d2 Mon Sep 17 00:00:00 2001 From: sajenim Date: Mon, 10 Jul 2023 07:21:40 +0800 Subject: [PATCH] adjust pane keybinds --- home-manager/common/desktop/wezterm/wezterm.lua | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/home-manager/common/desktop/wezterm/wezterm.lua b/home-manager/common/desktop/wezterm/wezterm.lua index 08a9c69..db80e17 100644 --- a/home-manager/common/desktop/wezterm/wezterm.lua +++ b/home-manager/common/desktop/wezterm/wezterm.lua @@ -108,10 +108,8 @@ config.keys = { { key = 'v', mods = 'ALT', action = act.SplitVertical { domain = 'CurrentPaneDomain' }, }, { key = 'h', mods = 'ALT', action = act.SplitHorizontal { domain = 'CurrentPaneDomain' }, }, --| Adjust Pane Size - { key = 'LeftArrow', mods = 'ALT|CTRL', action = act.AdjustPaneSize { 'Left', 5 } }, - { key = 'RightArrow', mods = 'ALT|CTRL', action = act.AdjustPaneSize { 'Right', 5 } }, - { key = 'DownArrow', mods = 'ALT|CTRL', action = act.AdjustPaneSize { 'Down', 5 } }, - { key = 'UpArrow', mods = 'ALT|CTRL', action = act.AdjustPaneSize { 'Up', 5 } }, + { key = 'PageDown', mods = 'ALT', action = act.AdjustPaneSize { 'Down', 5 } }, + { key = 'PageUp', mods = 'ALT', action = act.AdjustPaneSize { 'Up', 5 } }, --| Pane Navigation { key = 'DownArrow', mods = 'ALT', action = act.ActivatePaneDirection 'Next', }, { key = 'UpArrow', mods = 'ALT', action = act.ActivatePaneDirection 'Prev', },