wezterm: Switch navigator and tab hiding maps around

Since I (almost) never use the navigator, it has been put behind
`<leader>T`. The tab-hiding I used a (little) more often so that now
lies behind `<leader>t`. Simple change.
This commit is contained in:
Marty Oehme 2024-06-17 08:27:35 +02:00
parent 1a2e83ccb6
commit d8823d4661
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -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