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
812 B
812 B
ActivateTab
Activate the tab specified by the argument value. eg: 0
activates the
leftmost tab, while 1
activates the second tab from the left, and so on.
since: 20200620-160318-e00b076c
ActivateTab
now accepts negative numbers; these wrap around from the start
of the tabs to the end, so -1
references the right-most tab, -2
the tab
to its left and so on.
local wezterm = require 'wezterm'
local act = wezterm.action
local mykeys = {}
for i = 1, 8 do
-- CTRL+ALT + number to activate that tab
table.insert(mykeys, {
key = tostring(i),
mods = 'CTRL|ALT',
action = act.ActivateTab(i - 1),
})
-- F1 through F8 to activate that tab
table.insert(mykeys, {
key = 'F' .. tostring(i),
action = act.ActivateTab(i - 1),
})
end
return {
keys = mykeys,
}