From eb7f47fee594db42a4ac48d856771a3f8098d0c7 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Wed, 17 Sep 2025 16:48:43 +0200 Subject: [PATCH] wezterm: Unmap debug overlay mappings Unmap the custom set Debug overlay mapping since I haven't had to use it in absolute ages. Additionally we also unmap the default mapping for the debug overlay - which frees up the key combination to be passed through to TUIs. --- terminal/.config/wezterm/maps.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/terminal/.config/wezterm/maps.lua b/terminal/.config/wezterm/maps.lua index 1b66ed9..12e7848 100644 --- a/terminal/.config/wezterm/maps.lua +++ b/terminal/.config/wezterm/maps.lua @@ -2,7 +2,8 @@ local wezterm = require("wezterm") local act = wezterm.action local keys = { - { key = "O", mods = "CTRL", action = act.ShowDebugOverlay }, + { key = "L", mods = "CTRL|SHIFT", action = "DisableDefaultAssignment" }, + { key = "[", mods = "CTRL", action = act.ScrollToPrompt(-1) }, { key = "]", mods = "CTRL", action = act.ScrollToPrompt(1) }, { -- vertical pane