From ec26b6a36bb1b088f3ec51121179bd988b8e5e54 Mon Sep 17 00:00:00 2001 From: Mat Jones Date: Mon, 8 Jan 2024 13:34:32 -0500 Subject: [PATCH] fix(wezterm): Change keybind for command palette --- home-manager/modules/wezterm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-manager/modules/wezterm.nix b/home-manager/modules/wezterm.nix index d732b555..c235dafe 100644 --- a/home-manager/modules/wezterm.nix +++ b/home-manager/modules/wezterm.nix @@ -138,7 +138,7 @@ in { { key = 'c', mods = 'SUPER', action = wezterm.action.CopyTo('Clipboard') }, { key = 'v', mods = 'SUPER', action = wezterm.action.PasteFrom('Clipboard') }, { key = '[', mods = 'LEADER', action = wezterm.action.ActivateCopyMode }, - { key = 'p', mods = 'CTRL', action = wezterm.action.ActivateCommandPalette }, + { key = 'p', mods = 'SUPER', action = wezterm.action.ActivateCommandPalette }, } smart_splits.apply_to_config(config)