mirror of
https://github.com/wez/wezterm.git
synced 2024-12-26 14:54:16 +03:00
e0ea0f46a8
refs: https://github.com/wez/wezterm/pull/2273 refs: https://github.com/wez/wezterm/issues/2253
521 B
521 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'
local act = wezterm.action
return {
keys = {
{ key = '{', mods = 'ALT', action = act.ActivateTabRelative(-1) },
{ key = '}', mods = 'ALT', action = act.ActivateTabRelative(1) },
},
}
See also ActivateTabRelativeNoWrap