1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-26 14:54:16 +03:00
wezterm/docs/config/lua/keyassignment/ActivateLastTab.md

480 B

ActivateLastTab

Since: 20210404-112810-b63a949d

Activate the previously active tab. If there is none, it will do nothing.

return {
  leader = { key = 'a', mods = 'CTRL' },
  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.