From 771c82eabd7201a5df5d01c2dd1a2336fe656138 Mon Sep 17 00:00:00 2001 From: itsscb Date: Thu, 8 May 2025 18:51:28 +0000 Subject: [PATCH] Update wezterm.lua --- wezterm.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wezterm.lua b/wezterm.lua index 5503340..c76ea9a 100644 --- a/wezterm.lua +++ b/wezterm.lua @@ -62,7 +62,7 @@ local config = { { key = "l", mods = "ALT", action = wezterm.action.ActivatePaneDirection("Right") }, { key = "k", mods = "ALT", action = wezterm.action.ActivatePaneDirection("Up") }, { key = "j", mods = "ALT", action = wezterm.action.ActivatePaneDirection("Down") }, - { key = "q", mods = "ALT", action = wezterm.action.CloseCurrentTab({ confirm = true }) }, + { key = "q", mods = "ALT", action = wezterm.action.CloseCurrentPane({ confirm = true }) }, { key = "UpArrow", mods = "ALT", action = wezterm.action.AdjustPaneSize({ "Up", 1 }) }, { key = "DownArrow", mods = "ALT", action = wezterm.action.AdjustPaneSize({ "Down", 1 }) },