feat(wezterm): add keybind for ActivateCommandPalette

This commit is contained in:
Price Hiller 2023-05-05 03:39:18 -05:00
parent b2c2069ed8
commit 9f824de2ef
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -71,7 +71,10 @@ return {
{ key = "c", mods = "LEADER", action = wezterm.action.CopyTo("ClipboardAndPrimarySelection") }, { key = "c", mods = "LEADER", action = wezterm.action.CopyTo("ClipboardAndPrimarySelection") },
-- NOTE: Debugging -- 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 = {}, key_tables = {},
} }