2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2009 Nicholas Marriott <nicholas.marriott@gmail.com>
|
2009-06-01 22:58:49 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2014-10-20 23:35:28 +00:00
|
|
|
#define BREAK_PANE_TEMPLATE "#{session_name}:#{window_index}.#{pane_index}"
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_break_pane_exec(struct cmd *, struct cmdq_item *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_break_pane_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "break-pane",
|
|
|
|
.alias = "breakp",
|
|
|
|
|
2017-01-29 22:10:55 +00:00
|
|
|
.args = { "dPF:n:s:t:", 0, 0 },
|
|
|
|
.usage = "[-dP] [-F format] [-n window-name] [-s src-pane] [-t dst-window]",
|
2015-12-13 21:53:57 +00:00
|
|
|
|
2015-12-14 00:31:54 +00:00
|
|
|
.sflag = CMD_PANE,
|
|
|
|
.tflag = CMD_WINDOW_INDEX,
|
|
|
|
|
|
|
|
.flags = 0,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_break_pane_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_break_pane_exec(struct cmd *self, struct cmdq_item *item)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2011-01-04 00:42:46 +00:00
|
|
|
struct args *args = self->args;
|
2017-03-08 13:36:12 +00:00
|
|
|
struct client *c = item->state.c;
|
2016-10-16 19:04:05 +00:00
|
|
|
struct winlink *wl = item->state.sflag.wl;
|
|
|
|
struct session *src_s = item->state.sflag.s;
|
|
|
|
struct session *dst_s = item->state.tflag.s;
|
|
|
|
struct window_pane *wp = item->state.sflag.wp;
|
2015-12-13 14:32:38 +00:00
|
|
|
struct window *w = wl->window;
|
2017-01-29 22:10:55 +00:00
|
|
|
char *name, *cause;
|
2016-10-16 19:04:05 +00:00
|
|
|
int idx = item->state.tflag.idx;
|
2012-03-12 13:31:09 +00:00
|
|
|
const char *template;
|
|
|
|
char *cp;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2015-09-17 14:11:55 +00:00
|
|
|
if (idx != -1 && winlink_find_by_index(&dst_s->windows, idx) != NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "index %d already in use", idx);
|
2015-06-17 19:56:08 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2015-09-17 14:11:55 +00:00
|
|
|
if (window_count_panes(w) == 1) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "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
|
|
|
}
|
2013-03-24 09:57:59 +00:00
|
|
|
server_unzoom_window(w);
|
|
|
|
|
2011-05-08 21:30:00 +00:00
|
|
|
TAILQ_REMOVE(&w->panes, wp, entry);
|
2014-04-17 09:13:13 +00:00
|
|
|
window_lost_pane(w, wp);
|
2009-12-03 22:50:09 +00:00
|
|
|
layout_close_pane(wp);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2016-10-15 09:27:52 +00:00
|
|
|
w = wp->window = window_create(dst_s->sx, dst_s->sy);
|
2009-12-03 22:50:09 +00:00
|
|
|
TAILQ_INSERT_HEAD(&w->panes, wp, entry);
|
|
|
|
w->active = wp;
|
2017-01-29 22:10:55 +00:00
|
|
|
|
|
|
|
if (!args_has(args, 'n')) {
|
|
|
|
name = default_window_name(w);
|
|
|
|
window_set_name(w, name);
|
|
|
|
free(name);
|
|
|
|
} else {
|
|
|
|
window_set_name(w, args_get(args, 'n'));
|
|
|
|
options_set_number(w->options, "automatic-rename", 0);
|
|
|
|
}
|
|
|
|
|
2013-03-24 09:57:59 +00:00
|
|
|
layout_init(w, wp);
|
2015-12-02 23:09:22 +00:00
|
|
|
wp->flags |= PANE_CHANGED;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2015-06-17 19:56:08 +00:00
|
|
|
if (idx == -1)
|
2015-10-27 15:58:42 +00:00
|
|
|
idx = -1 - options_get_number(dst_s->options, "base-index");
|
2015-09-17 14:11:55 +00:00
|
|
|
wl = session_attach(dst_s, w, idx, &cause); /* can't fail */
|
2011-01-04 00:42:46 +00:00
|
|
|
if (!args_has(self->args, 'd'))
|
2015-09-17 14:11:55 +00:00
|
|
|
session_select(dst_s, wl->idx);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2015-09-17 14:11:55 +00:00
|
|
|
server_redraw_session(src_s);
|
|
|
|
if (src_s != dst_s)
|
|
|
|
server_redraw_session(dst_s);
|
|
|
|
server_status_session_group(src_s);
|
|
|
|
if (src_s != dst_s)
|
|
|
|
server_status_session_group(dst_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)
|
2012-08-14 08:51:53 +00:00
|
|
|
template = BREAK_PANE_TEMPLATE;
|
2017-03-08 13:36:12 +00:00
|
|
|
cp = format_single(item, template, c, dst_s, wl, wp);
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_print(item, "%s", cp);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cp);
|
2012-03-12 13:31:09 +00:00
|
|
|
}
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|