aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2025-04-06 23:13:20 -0700
committerGravatar Tom Willemse2025-04-06 23:13:20 -0700
commitcdaabcb4a28a46a26d5e851b5caa395b7c8f6f8d (patch)
treeb95c2094e7f0b17fc4fa9e84f66a75ce1040f930
parent6ce8efb86d4dc79f0aab44e3cdc0c69c64878f77 (diff)
downloadnew-dotfiles-cdaabcb4a28a46a26d5e851b5caa395b7c8f6f8d.tar.gz
new-dotfiles-cdaabcb4a28a46a26d5e851b5caa395b7c8f6f8d.zip
wezterm: Add keybindings for scrolling to prompts
-rw-r--r--wezterm/.config/wezterm/wezterm.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/wezterm/.config/wezterm/wezterm.lua b/wezterm/.config/wezterm/wezterm.lua
index 2af1162..dc03d78 100644
--- a/wezterm/.config/wezterm/wezterm.lua
+++ b/wezterm/.config/wezterm/wezterm.lua
@@ -37,6 +37,8 @@ config.keys = {
mods = 'ALT',
action = wezterm.action.PaneSelect,
},
+ { key = 'p', mods = 'ALT', action = wezterm.action.ScrollToPrompt(-1) },
+ { key = 'n', mods = 'ALT', action = wezterm.action.ScrollToPrompt(1) },
}
config.color_scheme = 'Dracula'