Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 625 Bytes

move_to_new_tab.md

File metadata and controls

23 lines (18 loc) · 625 Bytes

pane:move_to_new_tab()

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

Creates a new tab in the window that contains pane, and moves pane into that tab.

Returns the newly created MuxTab object, and the MuxWindow object that contains it:

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

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