From be1df0d8267c9fb22ae68609b0ecc01d261a91ca Mon Sep 17 00:00:00 2001 From: jasmine Date: Wed, 7 Aug 2024 20:59:24 +0800 Subject: [PATCH] Update keybinds --- .../sajenim/features/desktop/wezterm/config/wezterm.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home-manager/sajenim/features/desktop/wezterm/config/wezterm.lua b/home-manager/sajenim/features/desktop/wezterm/config/wezterm.lua index 356054e..8794ed2 100644 --- a/home-manager/sajenim/features/desktop/wezterm/config/wezterm.lua +++ b/home-manager/sajenim/features/desktop/wezterm/config/wezterm.lua @@ -89,7 +89,7 @@ config.colors = { config.disable_default_key_bindings = true config.keys = { --| Spawn Tab - { key = 't', mods = 'ALT', action = act.SpawnTab 'CurrentPaneDomain', }, + { key = 'n', mods = 'ALT', action = act.SpawnTab 'CurrentPaneDomain', }, --| Tab Navigation { key = 'LeftArrow', mods = 'ALT', action = act.ActivateTabRelative(-1) }, { key = 'RightArrow', mods = 'ALT', action = act.ActivateTabRelative(1) }, @@ -104,7 +104,7 @@ config.keys = { { key = 'DownArrow', mods = 'ALT', action = act.ActivatePaneDirection 'Next', }, { key = 'UpArrow', mods = 'ALT', action = act.ActivatePaneDirection 'Prev', }, --| Close Pane - { key = 'w', mods = "ALT|CTRL", action = act.CloseCurrentPane { confirm = false }, }, + { key = 'Escape', mods = "ALT", action = act.CloseCurrentPane { confirm = false }, }, --| Copy Mode / Clipboard { key = 'X', mods = 'CTRL', action = act.ActivateCopyMode, },