aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-07-12 23:36:14 -0700
committerGravatar Tom Willemse2026-08-26 23:04:25 -0700
commit97d0465d88d09e6365b51ab4ac2e816fb6fee484 (patch)
tree81faae0db62a14522bd98cef3ccb92a56e7d3a43
parente5922f62a65bbaa0a0c3ae74b29fb3a928193e9d (diff)
downloadnew-dotfiles-97d0465d88d09e6365b51ab4ac2e816fb6fee484.tar.gz
new-dotfiles-97d0465d88d09e6365b51ab4ac2e816fb6fee484.zip
wezterm: Add ‘M-x’ as a key to open the comman-palette
-rw-r--r--wezterm/.config/wezterm/init.fnl3
1 files changed, 2 insertions, 1 deletions
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 } }) }