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
585 B
585 B
ActivatePaneByIndex
Since: 20220319-142410-0fcdea07
ActivatePaneByIndex
activates the pane with the specified index within
the current tab. Invalid indices are ignored.
This example causes ALT-a, ALT-b, ALT-c to switch to the 0th, 1st and 2nd panes, respectively:
local wezterm = require 'wezterm'
local act = wezterm.action
return {
keys = {
{ key = 'a', mods = 'ALT', action = act.ActivatePaneByIndex(0) },
{ key = 'b', mods = 'ALT', action = act.ActivatePaneByIndex(1) },
{ key = 'c', mods = 'ALT', action = act.ActivatePaneByIndex(2) },
},
}