1
1
mirror of https://github.com/wez/wezterm.git synced 2025-01-01 18:22:13 +03:00
wezterm/docs/config/lua/keyassignment/ActivateTabRelative.md

23 lines
543 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'
local act = wezterm.action
local config = {}
config.keys = {
{ key = '{', mods = 'ALT', action = act.ActivateTabRelative(-1) },
{ key = '}', mods = 'ALT', action = act.ActivateTabRelative(1) },
}
return config
```
See also [ActivateTabRelativeNoWrap](ActivateTabRelativeNoWrap.md)