ActivatePaneByIndex

On this page
  1. ActivatePaneByIndex

ActivatePaneByIndex#

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 wakterm = require 'wakterm'
local act = wakterm.action
local config = {}

config.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) },
}

return config
Edit this page