2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Break pane off into a window.
|
|
|
|
*/
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
enum cmd_retval cmd_break_pane_exec(struct cmd *, struct cmd_ctx *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_break_pane_entry = {
|
|
|
|
"break-pane", "breakp",
|
2012-03-12 13:31:09 +00:00
|
|
|
"dPF:t:", 0, 0,
|
|
|
|
"[-dP] [-F format] " CMD_TARGET_PANE_USAGE,
|
2011-01-04 00:42:46 +00:00
|
|
|
0,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
cmd_break_pane_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
enum cmd_retval
|
2009-06-01 22:58:49 +00:00
|
|
|
cmd_break_pane_exec(struct cmd *self, struct cmd_ctx *ctx)
|
|
|
|
{
|
2011-01-04 00:42:46 +00:00
|
|
|
struct args *args = self->args;
|
2009-06-01 22:58:49 +00:00
|
|
|
struct winlink *wl;
|
|
|
|
struct session *s;
|
|
|
|
struct window_pane *wp;
|
|
|
|
struct window *w;
|
2012-02-02 00:10:11 +00:00
|
|
|
char *name;
|
2009-06-01 22:58:49 +00:00
|
|
|
char *cause;
|
2009-08-13 20:11:58 +00:00
|
|
|
int base_idx;
|
2012-03-12 13:31:09 +00:00
|
|
|
struct client *c;
|
|
|
|
struct format_tree *ft;
|
|
|
|
const char *template;
|
|
|
|
char *cp;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2011-01-04 00:42:46 +00:00
|
|
|
if ((wl = cmd_find_pane(ctx, args_get(args, 't'), &s, &wp)) == NULL)
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
if (window_count_panes(wl->window) == 1) {
|
2009-07-30 13:45:56 +00:00
|
|
|
ctx->error(ctx, "can't break with only one pane");
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
|
|
|
|
2011-05-08 21:30:00 +00:00
|
|
|
w = wl->window;
|
|
|
|
TAILQ_REMOVE(&w->panes, wp, entry);
|
|
|
|
if (wp == w->active) {
|
|
|
|
w->active = w->last;
|
|
|
|
w->last = NULL;
|
|
|
|
if (w->active == NULL) {
|
|
|
|
w->active = TAILQ_PREV(wp, window_panes, entry);
|
|
|
|
if (w->active == NULL)
|
|
|
|
w->active = TAILQ_NEXT(wp, entry);
|
|
|
|
}
|
|
|
|
} else if (wp == w->last)
|
|
|
|
w->last = NULL;
|
2009-12-03 22:50:09 +00:00
|
|
|
layout_close_pane(wp);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-12-03 22:50:09 +00:00
|
|
|
w = wp->window = window_create1(s->sx, s->sy);
|
|
|
|
TAILQ_INSERT_HEAD(&w->panes, wp, entry);
|
|
|
|
w->active = wp;
|
2012-02-02 00:10:11 +00:00
|
|
|
name = default_window_name(w);
|
|
|
|
window_set_name(w, name);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(name);
|
2009-07-19 13:21:40 +00:00
|
|
|
layout_init(w);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2009-08-13 20:11:58 +00:00
|
|
|
base_idx = options_get_number(&s->options, "base-index");
|
2009-12-03 22:50:09 +00:00
|
|
|
wl = session_attach(s, w, -1 - base_idx, &cause); /* can't fail */
|
2011-01-04 00:42:46 +00:00
|
|
|
if (!args_has(self->args, 'd'))
|
2009-12-03 22:50:09 +00:00
|
|
|
session_select(s, wl->idx);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
server_redraw_session(s);
|
2009-10-10 10:02:48 +00:00
|
|
|
server_status_session_group(s);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2012-03-12 13:31:09 +00:00
|
|
|
if (args_has(args, 'P')) {
|
2012-05-22 11:35:37 +00:00
|
|
|
|
|
|
|
if ((template = args_get(args, 'F')) == NULL)
|
|
|
|
template = DEFAULT_PANE_INFO_TEMPLATE;
|
|
|
|
|
2012-03-12 13:31:09 +00:00
|
|
|
ft = format_create();
|
|
|
|
if ((c = cmd_find_client(ctx, NULL)) != NULL)
|
|
|
|
format_client(ft, c);
|
|
|
|
format_session(ft, s);
|
|
|
|
format_winlink(ft, s, wl);
|
|
|
|
format_window_pane(ft, wp);
|
|
|
|
|
|
|
|
cp = format_expand(ft, template);
|
|
|
|
ctx->print(ctx, "%s", cp);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cp);
|
2012-03-12 13:31:09 +00:00
|
|
|
|
|
|
|
format_free(ft);
|
|
|
|
}
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|