1
1
mirror of https://github.com/wez/wezterm.git synced 2024-12-28 07:55:03 +03:00
wezterm/docs/config/lua/pane/move_to_new_window.md
2023-04-11 08:38:01 -07:00

808 B

pane:move_to_new_window([WORKSPACE])

{{since('20230326-111934-3666303c')}}

Creates a window and moves pane into that window.

The WORKSPACE parameter is optional; if specified, it will be used as the name of the workspace that should be associated with the new window. Otherwise, the current active workspace will be used.

Returns the newly created MuxTab object, and the newly created MuxWindow object.

config.keys = {
  {
    key = '!',
    mods = 'LEADER | SHIFT',
    action = wezterm.action_callback(function(win, pane)
      local tab, window = pane:move_to_new_window()
    end),
  },
}

See also pane:move_to_new_window(), wezterm cli move-pane-to-new-tab.