From 97d0465d88d09e6365b51ab4ac2e816fb6fee484 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sun, 12 Jul 2026 23:36:14 -0700 Subject: wezterm: Add ‘M-x’ as a key to open the comman-palette --- wezterm/.config/wezterm/init.fnl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'wezterm') diff --git a/wezterm/.config/wezterm/init.fnl b/wezterm/.config/wezterm/init.fnl index e9e3044..67a8080 100644 --- a/wezterm/.config/wezterm/init.fnl +++ b/wezterm/.config/wezterm/init.fnl @@ -39,7 +39,8 @@ { :key "n" :mods "LEADER" :action (wezterm.action.ScrollToPrompt 1) } { :key "c" :mods "LEADER" :action (wezterm.action.SendKey { :key "c" :mods "CTRL" }) } { :key "c" :mods "LEADER|CTRL" :action (wezterm.action.SendKey { :key "c" :mods "CTRL" }) } - { :key "s" :mods "LEADER" :action (wezterm.action.ActivateKeyTable { :name "split_pane" :timeout_milliseconds 1000 }) } ]) + { :key "s" :mods "LEADER" :action (wezterm.action.ActivateKeyTable { :name "split_pane" :timeout_milliseconds 1000 }) } + { :key "x" :mods "ALT" :action wezterm.action.ActivateCommandPalette } ]) (local key_tables { :split_pane [ { :key "f" :action (wezterm.action.SplitPane { :direction "Right" :size { :Percent 50 } }) } -- cgit v1.3-2-g0d8e