From 69f0a301fcc5ea0dc0bd19e6b0df0652f6e37972 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Thu, 16 Jul 2026 12:35:57 -0700 Subject: wezterm: Put prompt navigation behind leader key --- wezterm/.config/wezterm/init.fnl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wezterm') diff --git a/wezterm/.config/wezterm/init.fnl b/wezterm/.config/wezterm/init.fnl index 62174b7..e9e3044 100644 --- a/wezterm/.config/wezterm/init.fnl +++ b/wezterm/.config/wezterm/init.fnl @@ -35,8 +35,8 @@ [ open-url-key copy-guix-hash-key { :key "o" :mods "ALT" :action wezterm.action.PaneSelect } - { :key "p" :mods "ALT" :action (wezterm.action.ScrollToPrompt -1) } - { :key "n" :mods "ALT" :action (wezterm.action.ScrollToPrompt 1) } + { :key "p" :mods "LEADER" :action (wezterm.action.ScrollToPrompt -1) } + { :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 }) } ]) -- cgit v1.3-2-g0d8e