From de2cc5ce0d12033303f39ad64c46ca6749a724b1 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Fri, 22 Nov 2024 10:02:54 +0000 Subject: [PATCH] Change CTRL|SHIFT W to close pane instead of tab This allows more fine grain control when using multiple panes in multiplexed tabs when e.g. a shell becomes unresponsive in a specific pane the whole tab does not need to be closed. --- wezterm.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wezterm.lua b/wezterm.lua index 3f8c0e6..235495a 100644 --- a/wezterm.lua +++ b/wezterm.lua @@ -39,6 +39,11 @@ config.keys = { end), }), }, + { + key = 'w', + mods = 'CTRL|SHIFT', + action = wezterm.action.CloseCurrentPane { confirm = true }, + }, } local move_mods = 'CTRL|SHIFT'