Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 469 Bytes

ActivateLastTab.md

File metadata and controls

20 lines (15 loc) · 469 Bytes

ActivateLastTab

{{since('20210404-112810-b63a949d')}}

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 = wezterm.action.ActivateLastTab,
  },
}

See ActivateTab for a way to activate a tab based on its position/index.