mirror of
https://github.com/wez/wezterm.git
synced 2024-12-12 13:13:15 +03:00
e0ea0f46a8
refs: https://github.com/wez/wezterm/pull/2273 refs: https://github.com/wez/wezterm/issues/2253
22 lines
383 B
Markdown
22 lines
383 B
Markdown
# ActivateLastTab
|
|
|
|
*Since: 20210404-112810-b63a949d*
|
|
|
|
Activate the last active tab. If there is none, it will do nothing.
|
|
|
|
```lua
|
|
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,
|
|
},
|
|
},
|
|
}
|
|
```
|
|
|
|
|