Skip to content

window:active_tab()

Since: Version 20230408-112425-69ae8472

The functionality described in this section requires version 20230408-112425-69ae8472 of wezterm, or a more recent version.

A convenience accessor for returning the active tab within the window.

In earlier versions of wezterm, you could obtain this via:

function active_tab(window)
  for _, item in ipairs(window:tabs_with_info()) do
    if item.is_active then
      return item.tab
    end
  end
end