From 9f824de2ef3023c2374a670b1eade2a205d774a1 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Fri, 5 May 2023 03:39:18 -0500 Subject: [PATCH] feat(wezterm): add keybind for ActivateCommandPalette --- dots/.config/wezterm/config/keybinds.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dots/.config/wezterm/config/keybinds.lua b/dots/.config/wezterm/config/keybinds.lua index c673b9d6..87e59ded 100644 --- a/dots/.config/wezterm/config/keybinds.lua +++ b/dots/.config/wezterm/config/keybinds.lua @@ -71,7 +71,10 @@ return { { key = "c", mods = "LEADER", action = wezterm.action.CopyTo("ClipboardAndPrimarySelection") }, -- NOTE: Debugging - { key = "D", mods = "CTRL|SHIFT", action = wezterm.action.ShowDebugOverlay } + { key = "D", mods = "CTRL|SHIFT", action = wezterm.action.ShowDebugOverlay }, + + -- NOTE: Show Commands + { key = "C", mods = "CTRL|SHIFT", action = wezterm.action.ActivateCommandPalette } }, key_tables = {}, }