From 18c15907ef470e3d77a5a8f9593b033fa7276e69 Mon Sep 17 00:00:00 2001 From: Zackarias Montell Date: Thu, 15 May 2025 14:57:21 +0200 Subject: [PATCH] Removed conflicting binds --- .wezterm.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.wezterm.lua b/.wezterm.lua index a241d55..1627c8e 100644 --- a/.wezterm.lua +++ b/.wezterm.lua @@ -76,10 +76,6 @@ return { { key = "DownArrow", mods = "LEADER", action = act.ActivatePaneDirection("Down") }, { key = "UpArrow", mods = "LEADER", action = act.ActivatePaneDirection("Up") }, { key = "RightArrow", mods = "LEADER", action = act.ActivatePaneDirection("Right") }, - { key = "h", mods = "LEADER", action = act.ActivatePaneDirection("Left") }, - { key = "j", mods = "LEADER", action = act.ActivatePaneDirection("Down") }, - { key = "k", mods = "LEADER", action = act.ActivatePaneDirection("Up") }, - { key = "l", mods = "LEADER", action = act.ActivatePaneDirection("Right") }, { key = "H", mods = "LEADER", action = act({ AdjustPaneSize = { "Left", 5 } }) }, { key = "J", mods = "LEADER", action = act({ AdjustPaneSize = { "Down", 5 } }) },