1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-28 07:55:03 +03:00
wezterm/docs/config/lua/keyassignment/ActivateTabRelative.md

20 lines
499 B
Markdown
Raw Normal View History

# ActivateTabRelative
Activate a tab relative to the current tab. The argument value specifies an
offset. eg: `-1` activates the tab to the left of the current tab, while `1`
activates the tab to the right.
```lua
local wezterm = require 'wezterm';
return {
keys = {
{key="{", mods="ALT", action=wezterm.action{ActivateTabRelative=-1}},
{key="}", mods="ALT", action=wezterm.action{ActivateTabRelative=1}},
}
}
```
See also [ActivateTabRelativeNoWrap](ActivateTabRelativeNoWrap.md)