diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-03-11 06:31:06 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-03-11 06:31:06 +0000 |
commit | 52964d104dd1ef4ea6a1f7642e6aa9ee186c33d9 (patch) | |
tree | e442e43fe81af116e0620103f90baf0885c0f912 /usr.bin/tmux/options.c | |
parent | 358f9165fbd44de6c27a9f33d388a6e8ba47b199 (diff) |
Add split-window -Z to start the pane zoomed, GitHub issue 2591.
Diffstat (limited to 'usr.bin/tmux/options.c')
-rw-r--r-- | usr.bin/tmux/options.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/options.c b/usr.bin/tmux/options.c index 7773ad55edf..87be58aa7b2 100644 --- a/usr.bin/tmux/options.c +++ b/usr.bin/tmux/options.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options.c,v 1.61 2021/01/18 11:14:23 nicm Exp $ */ +/* $OpenBSD: options.c,v 1.62 2021/03/11 06:31:05 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -1115,7 +1115,7 @@ options_push_changes(const char *name) } if (strcmp(name, "pane-border-status") == 0) { RB_FOREACH(w, windows, &windows) - layout_fix_panes(w); + layout_fix_panes(w, NULL); } RB_FOREACH(s, sessions, &sessions) status_update_cache(s); |