ActivateLastTab
On this page
ActivateLastTab#
Activate the previously active tab. If there is none, it will do nothing.
config.leader = { key = 'a', mods = 'CTRL' }
config.keys = {
-- CTRL-a, followed by CTRL-o will switch back to the last active tab
{
key = 'o',
mods = 'LEADER|CTRL',
action = wakterm.action.ActivateLastTab,
},
}
See ActivateTab for a way to activate a tab based on its position/index.