summaryrefslogtreecommitdiff
path: root/usr.bin/tmux
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2019-09-23 15:41:12 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2019-09-23 15:41:12 +0000
commitc1e7063ed40fd0bdaa4a227ebb0278e7c1b6881a (patch)
treee7ca7de195c407f45aa8587fe753d014cf5e0232 /usr.bin/tmux
parente32c35f2955502f4d44610338cf72c9f800ce3ec (diff)
Use the correct size for new windows when window-size is latest,
reported by Vamsi Krishna Avula in GitHub issue 1917.
Diffstat (limited to 'usr.bin/tmux')
-rw-r--r--usr.bin/tmux/cmd-resize-window.c6
-rw-r--r--usr.bin/tmux/resize.c69
-rw-r--r--usr.bin/tmux/spawn.c4
-rw-r--r--usr.bin/tmux/tmux.h6
4 files changed, 56 insertions, 29 deletions
diff --git a/usr.bin/tmux/cmd-resize-window.c b/usr.bin/tmux/cmd-resize-window.c
index 07b0c269e30..f3e37269017 100644
--- a/usr.bin/tmux/cmd-resize-window.c
+++ b/usr.bin/tmux/cmd-resize-window.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-resize-window.c,v 1.1 2018/10/18 08:38:01 nicm Exp $ */
+/* $OpenBSD: cmd-resize-window.c,v 1.2 2019/09/23 15:41:11 nicm Exp $ */
/*
* Copyright (c) 2018 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -98,9 +98,9 @@ cmd_resize_window_exec(struct cmd *self, struct cmdq_item *item)
sy += adjust;
if (args_has(args, 'A'))
- default_window_size(s, w, &sx, &sy, WINDOW_SIZE_LARGEST);
+ default_window_size(NULL, s, w, &sx, &sy, WINDOW_SIZE_LARGEST);
else if (args_has(args, 'a'))
- default_window_size(s, w, &sx, &sy, WINDOW_SIZE_SMALLEST);
+ default_window_size(NULL, s, w, &sx, &sy, WINDOW_SIZE_SMALLEST);
options_set_number(w->options, "window-size", WINDOW_SIZE_MANUAL);
resize_window(w, sx, sy);
diff --git a/usr.bin/tmux/resize.c b/usr.bin/tmux/resize.c
index 04e3f9d6723..de5ade996fa 100644
--- a/usr.bin/tmux/resize.c
+++ b/usr.bin/tmux/resize.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: resize.c,v 1.33 2019/09/19 09:02:30 nicm Exp $ */
+/* $OpenBSD: resize.c,v 1.34 2019/09/23 15:41:11 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -76,30 +76,28 @@ ignore_client_size(struct client *c)
}
void
-default_window_size(struct session *s, struct window *w, u_int *sx, u_int *sy,
- int type)
+default_window_size(struct client *c, struct session *s, struct window *w,
+ u_int *sx, u_int *sy, int type)
{
- struct client *c;
+ struct client *loop;
u_int cx, cy;
const char *value;
if (type == -1)
type = options_get_number(global_w_options, "window-size");
- if (type == WINDOW_SIZE_MANUAL)
- goto manual;
-
- if (type == WINDOW_SIZE_LARGEST) {
+ switch (type) {
+ case WINDOW_SIZE_LARGEST:
*sx = *sy = 0;
- TAILQ_FOREACH(c, &clients, entry) {
- if (ignore_client_size(c))
+ TAILQ_FOREACH(loop, &clients, entry) {
+ if (ignore_client_size(loop))
continue;
- if (w != NULL && !session_has(c->session, w))
+ if (w != NULL && !session_has(loop->session, w))
continue;
- if (w == NULL && c->session != s)
+ if (w == NULL && loop->session != s)
continue;
- cx = c->tty.sx;
- cy = c->tty.sy - status_line_size(c);
+ cx = loop->tty.sx;
+ cy = loop->tty.sy - status_line_size(loop);
if (cx > *sx)
*sx = cx;
@@ -108,18 +106,19 @@ default_window_size(struct session *s, struct window *w, u_int *sx, u_int *sy,
}
if (*sx == 0 || *sy == 0)
goto manual;
- } else {
+ break;
+ case WINDOW_SIZE_SMALLEST:
*sx = *sy = UINT_MAX;
- TAILQ_FOREACH(c, &clients, entry) {
- if (ignore_client_size(c))
+ TAILQ_FOREACH(loop, &clients, entry) {
+ if (ignore_client_size(loop))
continue;
- if (w != NULL && !session_has(c->session, w))
+ if (w != NULL && !session_has(loop->session, w))
continue;
- if (w == NULL && c->session != s)
+ if (w == NULL && loop->session != s)
continue;
- cx = c->tty.sx;
- cy = c->tty.sy - status_line_size(c);
+ cx = loop->tty.sx;
+ cy = loop->tty.sy - status_line_size(loop);
if (cx < *sx)
*sx = cx;
@@ -128,6 +127,34 @@ default_window_size(struct session *s, struct window *w, u_int *sx, u_int *sy,
}
if (*sx == UINT_MAX || *sy == UINT_MAX)
goto manual;
+ break;
+ case WINDOW_SIZE_LATEST:
+ if (c != NULL && !ignore_client_size(c)) {
+ *sx = c->tty.sx;
+ *sy = c->tty.sy - status_line_size(c);
+ } else {
+ *sx = *sy = UINT_MAX;
+ TAILQ_FOREACH(loop, &clients, entry) {
+ if (ignore_client_size(loop))
+ continue;
+ if (w != NULL && loop != w->latest)
+ continue;
+ s = loop->session;
+
+ cx = loop->tty.sx;
+ cy = loop->tty.sy - status_line_size(loop);
+
+ if (cx < *sx)
+ *sx = cx;
+ if (cy < *sy)
+ *sy = cy;
+ }
+ if (*sx == UINT_MAX || *sy == UINT_MAX)
+ goto manual;
+ }
+ break;
+ case WINDOW_SIZE_MANUAL:
+ goto manual;
}
goto done;
diff --git a/usr.bin/tmux/spawn.c b/usr.bin/tmux/spawn.c
index e34895a46bc..cbcff729f0e 100644
--- a/usr.bin/tmux/spawn.c
+++ b/usr.bin/tmux/spawn.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: spawn.c,v 1.8 2019/09/19 09:02:30 nicm Exp $ */
+/* $OpenBSD: spawn.c,v 1.9 2019/09/23 15:41:11 nicm Exp $ */
/*
* Copyright (c) 2019 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -155,7 +155,7 @@ spawn_window(struct spawn_context *sc, char **cause)
xasprintf(cause, "couldn't add window %d", idx);
return (NULL);
}
- default_window_size(s, NULL, &sx, &sy, -1);
+ default_window_size(sc->c, s, NULL, &sx, &sy, -1);
if ((w = window_create(sx, sy)) == NULL) {
winlink_remove(&s->windows, sc->wl);
xasprintf(cause, "couldn't create window %d", idx);
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index 4ae71c84200..5907b5e133b 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.928 2019/09/19 09:02:30 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.929 2019/09/23 15:41:11 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -2196,8 +2196,8 @@ void status_prompt_save_history(void);
/* resize.c */
void resize_window(struct window *, u_int, u_int);
-void default_window_size(struct session *, struct window *, u_int *,
- u_int *, int);
+void default_window_size(struct client *, struct session *, struct window *,
+ u_int *, u_int *, int);
void recalculate_size(struct window *);
void recalculate_sizes(void);