wezterm: show tab bar. spawn new tab with C-S-Right

This commit is contained in:
Daniel Lundin 2021-04-02 17:35:50 +02:00
parent d70a1c9649
commit f04de75742

View file

@ -57,7 +57,7 @@ return {
bottom = 0,
},
enable_tab_bar = false,
enable_tab_bar = true,
show_tab_index_in_tab_bar = true,
enable_scroll_bar = false,
window_decorations = "NONE",
@ -85,6 +85,7 @@ return {
{key="LeftArrow", mods="CTRL", action=wezterm.action{ActivateTabRelative=-1}},
{key="RightArrow", mods="CTRL", action=wezterm.action{ActivateTabRelative=1}},
{key="RightArrow", mods="CTRL|SHIFT", action=wezterm.action{SpawnTab="CurrentPaneDomain"}},
{key="1", mods="ALT", action=wezterm.action{ActivateTab=0}},
{key="2", mods="ALT", action=wezterm.action{ActivateTab=1}},