diff options
| author | 2026-07-16 12:35:57 -0700 | |
|---|---|---|
| committer | 2026-07-16 12:37:23 -0700 | |
| commit | f35cc2aedcf5165a6e028a35b54356bda551dd06 (patch) | |
| tree | 6dd89cacff93dd5d6e5386d6c9a7c1e9aa9c50f6 | |
| parent | 2979cb6d46fc48d1786e2a77d2b27c79d46b5c0f (diff) | |
| download | new-dotfiles-f35cc2aedcf5165a6e028a35b54356bda551dd06.tar.gz new-dotfiles-f35cc2aedcf5165a6e028a35b54356bda551dd06.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 }) } ]) |
