diff options
| author | 2026-07-12 23:36:14 -0700 | |
|---|---|---|
| committer | 2026-07-18 02:13:34 -0700 | |
| commit | 6ec4962ccbdbec3398b14d584ef3b1776ea43da9 (patch) | |
| tree | 8d58e3da9ac52440f3895cf18a3659dc46553215 /wezterm | |
| parent | 6490ef04e7b9022d6a0491fdbe6af82bacde2785 (diff) | |
| download | new-dotfiles-6ec4962ccbdbec3398b14d584ef3b1776ea43da9.tar.gz new-dotfiles-6ec4962ccbdbec3398b14d584ef3b1776ea43da9.zip | |
wezterm: Add ‘M-x’ as a key to open the comman-palette
Diffstat (limited to 'wezterm')
| -rw-r--r-- | wezterm/.config/wezterm/init.fnl | 3 |
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 } }) } |
