Initial commit. Add new new-floating-window command to create panes without a layout_cell indicating they are floating panes.

This commit is contained in:
Michael Grant
2025-10-04 09:15:51 +01:00
parent 3e28777ecb
commit 968f439672
6 changed files with 174 additions and 2 deletions

2
cmd.c
View File

@@ -109,6 +109,7 @@ extern const struct cmd_entry cmd_show_prompt_history_entry;
extern const struct cmd_entry cmd_show_window_options_entry;
extern const struct cmd_entry cmd_source_file_entry;
extern const struct cmd_entry cmd_split_window_entry;
extern const struct cmd_entry cmd_new_floating_window_entry;
extern const struct cmd_entry cmd_start_server_entry;
extern const struct cmd_entry cmd_suspend_client_entry;
extern const struct cmd_entry cmd_swap_pane_entry;
@@ -201,6 +202,7 @@ const struct cmd_entry *cmd_table[] = {
&cmd_show_window_options_entry,
&cmd_source_file_entry,
&cmd_split_window_entry,
&cmd_new_floating_window_entry,
&cmd_start_server_entry,
&cmd_suspend_client_entry,
&cmd_swap_pane_entry,