aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2019-08-15 11:02:48 +0100
committerThomas Adam <thomas@xteddy.org>2019-08-15 11:02:48 +0100
commited0f2831b470e7f9025793a3228805991e9cff61 (patch)
treef42594a8177df0a4ad652108f9f42a71887e2baa /tmux.h
parent9b3fefc43529666b1f6adc5efc89f6a5f127f274 (diff)
parent21fae500897fcc3fa1bf561a2da3c439f5b5897b (diff)
downloadrtmux-ed0f2831b470e7f9025793a3228805991e9cff61.tar.gz
rtmux-ed0f2831b470e7f9025793a3228805991e9cff61.tar.bz2
rtmux-ed0f2831b470e7f9025793a3228805991e9cff61.zip
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 9bf9f933..30d01693 100644
--- a/tmux.h
+++ b/tmux.h
@@ -924,6 +924,7 @@ struct window {
#define WINDOW_ACTIVITY 0x2
#define WINDOW_SILENCE 0x4
#define WINDOW_ZOOMED 0x8
+#define WINDOW_WASZOOMED 0x10
#define WINDOW_ALERTFLAGS (WINDOW_BELL|WINDOW_ACTIVITY|WINDOW_SILENCE)
int alerts_queued;
@@ -2383,6 +2384,8 @@ struct window_pane *window_add_pane(struct window *, struct window_pane *,
void window_resize(struct window *, u_int, u_int);
int window_zoom(struct window_pane *);
int window_unzoom(struct window *);
+int window_push_zoom(struct window *, int);
+int window_pop_zoom(struct window *);
void window_lost_pane(struct window *, struct window_pane *);
void window_remove_pane(struct window *, struct window_pane *);
struct window_pane *window_pane_at_index(struct window *, u_int);