diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-03-03 08:31:18 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2012-03-03 08:31:18 +0000 |
commit | 07ac16807f85d7bd5e7c7570f2b11250c65b6228 (patch) | |
tree | 8409a155ccc48f26d4ebf7c5fe5ba45fdf4e44fa /tmux.h | |
parent | 4d9ccd322909334b896d6a0420ea747898799385 (diff) | |
download | rtmux-07ac16807f85d7bd5e7c7570f2b11250c65b6228.tar.gz rtmux-07ac16807f85d7bd5e7c7570f2b11250c65b6228.tar.bz2 rtmux-07ac16807f85d7bd5e7c7570f2b11250c65b6228.zip |
Add move-pane command (like join-pane but allows the same window). Also
-b flag to join-pane and move-pane to place the pane to the left or
above. From George Nachman.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1605,6 +1605,7 @@ extern const struct cmd_entry cmd_load_buffer_entry; extern const struct cmd_entry cmd_lock_client_entry; extern const struct cmd_entry cmd_lock_server_entry; extern const struct cmd_entry cmd_lock_session_entry; +extern const struct cmd_entry cmd_move_pane_entry; extern const struct cmd_entry cmd_move_window_entry; extern const struct cmd_entry cmd_new_session_entry; extern const struct cmd_entry cmd_new_window_entry; @@ -1999,7 +2000,7 @@ void layout_resize_pane_mouse( struct client *c, struct mouse_event *mouse); void layout_assign_pane(struct layout_cell *, struct window_pane *); struct layout_cell *layout_split_pane( - struct window_pane *, enum layout_type, int); + struct window_pane *, enum layout_type, int, int); void layout_close_pane(struct window_pane *); /* layout-custom.c */ |