1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-26 14:54:16 +03:00
wezterm/docs/config/lua/keyassignment/ActivateWindow.md
Wez Furlong b01aa129f7
add WindowOps::focus, ActivateWindow, window:focus()
Only implemented on X11 so far.
Note that Wayland doesn't support this action at all.

refs: https://github.com/wez/wezterm/issues/2973
2023-01-18 22:58:48 -07:00

726 B

ActivateWindow(n)

since: nightly builds only

Activates the nth GUI window, zero-based.

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

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

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

local wezterm = require 'wezterm'
local act = wezterm.action

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

return {
  keys = mykeys,
}

See also ActivateWindowRelative, ActivateWindowRelativeNoWrap.