Size on split-window is -l not -s. Doh.
[tmux-openbsd.git] / cmd-break-pane.c
blob4c57a11696852ae9cf7aa2332cd781a63b567519
1 /* $OpenBSD$ */
3 /*
4 * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
15 * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
16 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 #include <sys/types.h>
21 #include <stdlib.h>
23 #include "tmux.h"
26 * Break pane off into a window.
29 int cmd_break_pane_exec(struct cmd *, struct cmd_ctx *);
31 const struct cmd_entry cmd_break_pane_entry = {
32 "break-pane", "breakp",
33 "dt:", 0, 0,
34 "[-d] " CMD_TARGET_PANE_USAGE,
36 NULL,
37 NULL,
38 cmd_break_pane_exec
41 int
42 cmd_break_pane_exec(struct cmd *self, struct cmd_ctx *ctx)
44 struct args *args = self->args;
45 struct winlink *wl;
46 struct session *s;
47 struct window_pane *wp;
48 struct window *w;
49 char *cause;
50 int base_idx;
52 if ((wl = cmd_find_pane(ctx, args_get(args, 't'), &s, &wp)) == NULL)
53 return (-1);
55 if (window_count_panes(wl->window) == 1) {
56 ctx->error(ctx, "can't break with only one pane");
57 return (-1);
60 TAILQ_REMOVE(&wl->window->panes, wp, entry);
61 if (wl->window->active == wp) {
62 wl->window->active = TAILQ_PREV(wp, window_panes, entry);
63 if (wl->window->active == NULL)
64 wl->window->active = TAILQ_NEXT(wp, entry);
66 layout_close_pane(wp);
68 w = wp->window = window_create1(s->sx, s->sy);
69 TAILQ_INSERT_HEAD(&w->panes, wp, entry);
70 w->active = wp;
71 w->name = default_window_name(w);
72 layout_init(w);
74 base_idx = options_get_number(&s->options, "base-index");
75 wl = session_attach(s, w, -1 - base_idx, &cause); /* can't fail */
76 if (!args_has(self->args, 'd'))
77 session_select(s, wl->idx);
79 server_redraw_session(s);
80 server_status_session_group(s);
82 return (0);