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:
parent
1a2e83ccb6
commit
d8823d4661
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue