diff options
| -rw-r--r-- | wezterm/.config/wezterm/wezterm.fnl | 4 |
1 files changed, 3 insertions, 1 deletions
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 |
