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
474 B
474 B
MoveTab
Move the tab so that it has the index specified by the argument. eg: 0
moves the tab to be leftmost, while 1
moves the tab so that it is second tab
from the left, and so on.
local wezterm = require 'wezterm'
local mykeys = {}
for i = 1, 8 do
-- CTRL+ALT + number to move to that position
table.insert(mykeys, {
key = tostring(i),
mods = 'CTRL|ALT',
action = wezterm.action.MoveTab(i - 1),
})
end
return {
keys = mykeys,
}