summaryrefslogtreecommitdiffstats
path: root/cmd-resize-pane.c
diff options
context:
space:
mode:
authornicm <nicm>2022-02-03 11:06:11 +0000
committernicm <nicm>2022-02-03 11:06:11 +0000
commit3276f0c18473703a734d53495202f50a2c7d6b34 (patch)
tree3326d332ce8d866332414d3e6abb6c6518464f43 /cmd-resize-pane.c
parent948d2fad0ae9723263554115164c412aa095fe7a (diff)
Adjust size given to resize-pane for pane status line, GitHub issue
3050.
Diffstat (limited to 'cmd-resize-pane.c')
-rw-r--r--cmd-resize-pane.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/cmd-resize-pane.c b/cmd-resize-pane.c
index 81744f72..c9439441 100644
--- a/cmd-resize-pane.c
+++ b/cmd-resize-pane.c
@@ -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);
}