mirror of
https://github.com/wez/wezterm.git
synced 2024-12-29 00:21:57 +03:00
809bb53387
This makes the individual functions a bit easier to discover, and a lot easier to link to.
26 lines
464 B
Markdown
26 lines
464 B
Markdown
# 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.
|
|
|
|
```lua
|
|
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{Move=i-1},
|
|
})
|
|
end
|
|
|
|
return {
|
|
keys = mykeys,
|
|
}
|
|
```
|
|
|
|
|