-
-
Notifications
You must be signed in to change notification settings - Fork 830
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mux: add lua api equivalent to move-pane-to-new-tab
refs: #3374
- Loading branch information
Showing
5 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# `pane:move_to_new_tab()` | ||
|
||
{{since('nightly')}} | ||
|
||
Creates a new tab in the window that contains `pane`, and moves `pane` into that tab. | ||
|
||
See also [pane:move_to_new_window()](move_to_new_window.md), | ||
[wezterm cli move-pane-to-new-tab](../../../cli/cli/move-pane-to-new-tab.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# `pane:move_to_new_window([WORKSPACE])` | ||
|
||
{{since('nightly')}} | ||
|
||
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. | ||
|
||
See also [pane:move_to_new_window()](move_to_new_window.md), | ||
[wezterm cli move-pane-to-new-tab](../../../cli/cli/move-pane-to-new-tab.md). | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters