Adjust size given to resize-pane for pane status line, GitHub issue

3050.
pull/3160/head
nicm 2022-02-03 11:06:11 +00:00 committed by Nicholas Marriott
parent 53ee4f0334
commit 921be61930
1 changed files with 12 additions and 1 deletions

View File

@ -60,7 +60,7 @@ cmd_resize_pane_exec(struct cmd *self, struct cmdq_item *item)
const char *errstr;
char *cause;
u_int adjust;
int x, y;
int x, y, status;
struct grid *gd = wp->base.grid;
if (args_has(args, 'T')) {
@ -121,6 +121,17 @@ cmd_resize_pane_exec(struct cmd *self, struct cmdq_item *item)
free(cause);
return (CMD_RETURN_ERROR);
}
status = options_get_number(w->options, "pane-border-status");
switch (status) {
case PANE_STATUS_TOP:
if (y != INT_MAX && wp->yoff == 1)
y++;
break;
case PANE_STATUS_BOTTOM:
if (y != INT_MAX && wp->yoff + wp->sy == w->sy - 1)
y++;
break;
}
layout_resize_pane_to(wp, LAYOUT_TOPBOTTOM, y);
}