Moved new-pane into split-window.

This commit is contained in:
Dane Jensen
2026-05-16 17:30:30 -07:00
parent fd4e683151
commit 76196b8ffa
4 changed files with 136 additions and 109 deletions

12
tmux.h
View File

@@ -1386,6 +1386,9 @@ struct window {
u_int xpixel;
u_int ypixel;
u_int last_new_pane_x;
u_int last_new_pane_y;
u_int new_sx;
u_int new_sy;
u_int new_xpixel;
@@ -3491,9 +3494,12 @@ enum client_theme window_pane_get_theme(struct window_pane *);
void window_pane_send_theme_update(struct window_pane *);
struct style_range *window_pane_border_status_get_range(struct window_pane *,
u_int, u_int);
int window_pane_tile_geometry(struct window *,
struct window_pane *, int *, int *, enum layout_type *,
struct cmdq_item *, struct args *, char **);
int window_pane_tile_geometry(struct window *, struct window_pane *,
int *, int *, enum layout_type *, struct cmdq_item *,
struct args *, char **);
int window_pane_float_geometry(struct window *, struct window_pane *,
u_int *, u_int *, u_int *, u_int *, struct cmdq_item *,
struct args *, char **);
/* layout.c */
u_int layout_count_cells(struct layout_cell *);