From 01c9dc628a66183e1eb790870ff2346c9a0cff1c Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 3 May 2023 16:26:57 -0500 Subject: [PATCH] feat(wezterm): add keybind for debug overlay --- dots/.config/wezterm/config/keybinds.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dots/.config/wezterm/config/keybinds.lua b/dots/.config/wezterm/config/keybinds.lua index ed0f4fdb..c673b9d6 100644 --- a/dots/.config/wezterm/config/keybinds.lua +++ b/dots/.config/wezterm/config/keybinds.lua @@ -69,6 +69,9 @@ return { -- NOTE: Copy & Paste { key = "v", mods = "LEADER", action = wezterm.action.PasteFrom("Clipboard") }, { key = "c", mods = "LEADER", action = wezterm.action.CopyTo("ClipboardAndPrimarySelection") }, + + -- NOTE: Debugging + { key = "D", mods = "CTRL|SHIFT", action = wezterm.action.ShowDebugOverlay } }, key_tables = {}, }