1
1
mirror of https://github.com/wez/wezterm.git synced 2025-01-07 14:37:26 +03:00
wezterm/docs/config/lua/window/active_workspace.md

534 B

window:active_workspace()

Since: 20220319-142410-0fcdea07

Returns the name of the active workspace.

This example demonstrates using the launcher menu to select and create workspaces, and how the workspace can be shown in the right status area.

local wezterm = require 'wezterm'

wezterm.on("update-right-status", function(window, pane)
  window:set_right_status(window:active_workspace())
end)

return {
  keys = {
    {key="9", mods="ALT", action=wezterm.action.ShowLauncherArgs{flags="FUZZY|WORKSPACES"}},
  },
}