diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-21 19:38:51 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-21 19:38:51 +0000 |
commit | 19987feaaab86e19533ca59a8ae0ff535f23db75 (patch) | |
tree | 4e386aea2c2f5f3b2f8c36bbb559f62e6a1398d2 /tmux.h | |
parent | 7118baa340a2679425ad334bc3fd4177a8e8f652 (diff) | |
download | rtmux-19987feaaab86e19533ca59a8ae0ff535f23db75.tar.gz rtmux-19987feaaab86e19533ca59a8ae0ff535f23db75.tar.bz2 rtmux-19987feaaab86e19533ca59a8ae0ff535f23db75.zip |
Bring back -p and -l to splitw to specify height as % or nlines.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.245 2009-01-20 19:35:03 nicm Exp $ */ +/* $Id: tmux.h,v 1.246 2009-01-21 19:38:51 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1421,7 +1421,7 @@ struct window *window_create(const char *, const char *, void window_destroy(struct window *); int window_resize(struct window *, u_int, u_int); void window_set_active_pane(struct window *, struct window_pane *); -struct window_pane *window_add_pane(struct window *, +struct window_pane *window_add_pane(struct window *, int, const char *, const char *, const char **, u_int); void window_remove_pane(struct window *, struct window_pane *); u_int window_index_of_pane(struct window *, struct window_pane *); |