From d8823d4661a2b518fccdeebd069e676f6c4953e0 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Mon, 17 Jun 2024 08:27:35 +0200 Subject: [PATCH] wezterm: Switch navigator and tab hiding maps around Since I (almost) never use the navigator, it has been put behind `T`. The tab-hiding I used a (little) more often so that now lies behind `t`. Simple change. --- terminal/.config/wezterm/maps.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terminal/.config/wezterm/maps.lua b/terminal/.config/wezterm/maps.lua index 40e1b43..a582345 100644 --- a/terminal/.config/wezterm/maps.lua +++ b/terminal/.config/wezterm/maps.lua @@ -52,7 +52,7 @@ local keys = { mods = "LEADER", action = act.ShowLauncherArgs({ flags = "FUZZY|WORKSPACES" }), }, - { key = "t", mods = "LEADER", action = act.ShowTabNavigator }, + { key = "T", mods = "LEADER", action = act.ShowTabNavigator }, { key = "[", mods = "LEADER", action = act.ActivateCopyMode }, { key = "r", @@ -100,7 +100,7 @@ local keys = { action = act.EmitEvent("ActivatePaneDirection-Right"), }, { key = "a", mods = "CTRL|ALT", action = act.EmitEvent("toggle-leader") }, - { key = "T", mods = "CTRL", action = act.EmitEvent("toggle-tabbar") }, + { key = "t", mods = "LEADER", action = act.EmitEvent("toggle-tabbar") }, } -- Leader + number to activate that tab for i = 1, 8 do