mirror of
https://github.com/wez/wezterm.git
synced 2024-12-27 15:37:29 +03:00
6a265d9f72
refs: #1414
499 B
499 B
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.
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