diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-18 17:00:35 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-18 17:00:35 +0000 |
commit | e4bb87032eb851338aa77bceb3e4581da3281a1d (patch) | |
tree | 2f3d1e4231f7e644615113753f1aec7f286d992b /tmux.h | |
parent | a6c4c2cca0d44e0cec9d4a0cc041290a263826fb (diff) | |
download | rtmux-e4bb87032eb851338aa77bceb3e4581da3281a1d.tar.gz rtmux-e4bb87032eb851338aa77bceb3e4581da3281a1d.tar.bz2 rtmux-e4bb87032eb851338aa77bceb3e4581da3281a1d.zip |
Add resize-pane -x and -y for absolute pane size.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1167,7 +1167,7 @@ struct mouse_event { u_int sgr; /* whether the input arrived in SGR format */ u_int sgr_xb; /* only for SGR: the unmangled button */ - u_int sgr_rel; /* only for SGR: whether it is a release event */ + u_int sgr_rel; /* only for SGR: if it is a release event */ u_int button; u_int clicks; @@ -2163,9 +2163,11 @@ void layout_resize_adjust( void layout_init(struct window *); void layout_free(struct window *); void layout_resize(struct window *, u_int, u_int); -void layout_resize_pane( - struct window_pane *, enum layout_type, int); -void layout_resize_pane_mouse(struct client *c); +void layout_resize_pane(struct window_pane *, enum layout_type, + int); +void layout_resize_pane_to(struct window_pane *, enum layout_type, + u_int); +void layout_resize_pane_mouse(struct client *); void layout_assign_pane(struct layout_cell *, struct window_pane *); struct layout_cell *layout_split_pane( struct window_pane *, enum layout_type, int, int); |