diff options
| author | 2026-07-16 12:35:57 -0700 | |
|---|---|---|
| committer | 2026-08-26 23:04:25 -0700 | |
| commit | 69f0a301fcc5ea0dc0bd19e6b0df0652f6e37972 (patch) | |
| tree | dca974f25dc6fcb010555a57c14a9ab8fd197390 | |
| parent | a4c3fb097e5a4df7162925f2fa118ef90f33c55b (diff) | |
| download | new-dotfiles-69f0a301fcc5ea0dc0bd19e6b0df0652f6e37972.tar.gz new-dotfiles-69f0a301fcc5ea0dc0bd19e6b0df0652f6e37972.zip | |
wezterm: Put prompt navigation behind leader key
| -rw-r--r-- | wezterm/.config/wezterm/init.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
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 }) } ]) |
