From acbb07134e0d36d75a60cb9e906aac786741ded4 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 19 Jun 2026 12:20:59 -0700 Subject: wezterm: Add keybinding to send leader key back to terminal C-c is used quite a lot in the terminal, so I need to be able to actually send it there. --- wezterm/.config/wezterm/wezterm.fnl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'wezterm') diff --git a/wezterm/.config/wezterm/wezterm.fnl b/wezterm/.config/wezterm/wezterm.fnl index fcf6ac3..611624d 100644 --- a/wezterm/.config/wezterm/wezterm.fnl +++ b/wezterm/.config/wezterm/wezterm.fnl @@ -31,7 +31,9 @@ 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 "n" :mods "ALT" :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" }) }]) (local inactive_pane_hsb { :saturation 0.8 -- cgit v1.3-2-g0d8e