From b88b4b1d494ab93cad201d8c7fe1e8b68240cc96 Mon Sep 17 00:00:00 2001 From: Matt Nish-Lapidus Date: Mon, 26 May 2025 16:05:34 -0400 Subject: [PATCH] wezterm binds --- modules/home/shell-conf/wezterm/wezterm.lua | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/modules/home/shell-conf/wezterm/wezterm.lua b/modules/home/shell-conf/wezterm/wezterm.lua index 5b1a73c..1fc8bf6 100644 --- a/modules/home/shell-conf/wezterm/wezterm.lua +++ b/modules/home/shell-conf/wezterm/wezterm.lua @@ -160,10 +160,11 @@ config.keys = { { key="UpArrow", mods="CTRL|META", action=act.ActivatePaneDirection("Prev") }, { key="DownArrow", mods="CTRL|META", action=act.ActivatePaneDirection("Next") }, - { key='h', mods='CTRL|META', action=wezterm.action{ActivatePaneDirection="Left"} }, - { key='l', mods='CTRL|META', action=wezterm.action{ActivatePaneDirection="Right"} }, - { key='j', mods='CTRL|META', action=wezterm.action{ActivatePaneDirection="Up"} }, - { key='k', mods='CTRL|META', action=wezterm.action{ActivatePaneDirection="Down"} }, + { key="h", mods="CTRL|META", action=act.ActivateTabRelative(-1) }, + { key="l", mods="CTRL|META", action=act.ActivateTabRelative(1) }, + + { key="k", mods="CTRL|META", action=act.ActivatePaneDirection("Prev") }, + { key="j", mods="CTRL|META", action=act.ActivatePaneDirection("Next") }, { key = "s",