summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2016-09-04 17:37:07 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2016-09-04 17:37:07 +0000
commit2fd9173279070c46e16ed3faee859d58e6101df9 (patch)
tree798b2cd64041f538ebe77d907fccd324c0305687 /usr.bin/tmux/tmux.h
parentf6dce2289136b1dac903bb6c208d04fd8c27ccd2 (diff)
Add support for performing a full width split (with splitw -f), rather
than splitting the current cell. From Stephen Kent.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r--usr.bin/tmux/tmux.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index 8fc21251735..4fb24bfbcc3 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.642 2016/09/02 20:57:20 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.643 2016/09/04 17:37:06 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -2205,7 +2205,7 @@ void layout_resize_pane_to(struct window_pane *, enum layout_type,
u_int);
void layout_assign_pane(struct layout_cell *, struct window_pane *);
struct layout_cell *layout_split_pane(struct window_pane *, enum layout_type,
- int, int);
+ int, int, int);
void layout_close_pane(struct window_pane *);
/* layout-custom.c */