ActivateWindow

On this page
  1. ActivateWindow(n)

ActivateWindow(n)#

Activates the nth GUI window, zero-based.

Performing this action is equivalent to executing this lua code fragment:

wakterm.gui.gui_windows()[n + 1]:focus()

Here's an example of setting up hotkeys to activate specific windows:

local wakterm = require 'wakterm'
local act = wakterm.action
local config = {}

config.keys = {}
for i = 1, 8 do
  -- CMD+ALT + number to activate that window
  table.insert(config.keys, {
    key = tostring(i),
    mods = 'CMD|ALT',
    action = act.ActivateWindow(i - 1),
  })
end

return config

See also ActivateWindowRelative, ActivateWindowRelativeNoWrap.

Edit this page