diff options
author | Tiago Cunha <tcunha@gmx.com> | 2012-03-03 09:19:40 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2012-03-03 09:19:40 +0000 |
commit | e4f1fbd0085f30be0945ff3c8220184b0b473906 (patch) | |
tree | 204603b6b0c3ac845fe456260c1fa64d973eeae4 /tmux.h | |
parent | 89ab14709346ebcb49d43172ff55b15a6512e08f (diff) | |
download | rtmux-e4f1fbd0085f30be0945ff3c8220184b0b473906.tar.gz rtmux-e4f1fbd0085f30be0945ff3c8220184b0b473906.tar.bz2 rtmux-e4f1fbd0085f30be0945ff3c8220184b0b473906.zip |
Sync OpenBSD patchset 1035:
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
@@ -1601,6 +1601,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; @@ -1995,7 +1996,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 */ |