2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2008 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"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Move a window.
|
|
|
|
*/
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_move_window_exec(struct cmd *, struct cmdq_item *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_move_window_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "move-window",
|
|
|
|
.alias = "movew",
|
|
|
|
|
2020-06-13 09:05:53 +00:00
|
|
|
.args = { "abdkrs:t:", 0, 0 },
|
|
|
|
.usage = "[-abdkr] " CMD_SRCDST_WINDOW_USAGE,
|
2015-12-13 21:53:57 +00:00
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
.source = { 's', CMD_FIND_WINDOW, 0 },
|
|
|
|
/* -t is special */
|
2015-12-14 00:31:54 +00:00
|
|
|
|
|
|
|
.flags = 0,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_move_window_exec
|
2009-06-01 22:58:49 +00:00
|
|
|
};
|
|
|
|
|
2014-10-27 22:40:29 +00:00
|
|
|
const struct cmd_entry cmd_link_window_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "link-window",
|
|
|
|
.alias = "linkw",
|
|
|
|
|
2020-06-13 09:05:53 +00:00
|
|
|
.args = { "abdks:t:", 0, 0 },
|
|
|
|
.usage = "[-abdk] " CMD_SRCDST_WINDOW_USAGE,
|
2015-12-13 21:53:57 +00:00
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
.source = { 's', CMD_FIND_WINDOW, 0 },
|
|
|
|
/* -t is special */
|
2015-12-14 00:31:54 +00:00
|
|
|
|
|
|
|
.flags = 0,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_move_window_exec
|
2014-10-27 22:40:29 +00:00
|
|
|
};
|
|
|
|
|
2016-10-10 21:51:39 +00:00
|
|
|
static enum cmd_retval
|
2016-10-16 19:04:05 +00:00
|
|
|
cmd_move_window_exec(struct cmd *self, struct cmdq_item *item)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2020-04-13 10:59:58 +00:00
|
|
|
struct args *args = cmd_get_args(self);
|
|
|
|
struct cmd_find_state *source = cmdq_get_source(item);
|
|
|
|
struct cmd_find_state target;
|
|
|
|
const char *tflag = args_get(args, 't');
|
2020-04-22 21:15:33 +00:00
|
|
|
struct session *src = source->s;
|
2020-04-13 10:59:58 +00:00
|
|
|
struct session *dst;
|
2020-04-22 21:15:33 +00:00
|
|
|
struct winlink *wl = source->wl;
|
2020-04-13 10:59:58 +00:00
|
|
|
char *cause;
|
2020-06-13 09:05:53 +00:00
|
|
|
int idx, kflag, dflag, sflag, before;
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2015-12-13 14:32:38 +00:00
|
|
|
if (args_has(args, 'r')) {
|
2020-04-13 10:59:58 +00:00
|
|
|
if (cmd_find_target(&target, item, tflag, CMD_FIND_SESSION,
|
|
|
|
CMD_FIND_QUIET) != 0)
|
2017-04-22 10:22:39 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
|
2020-04-13 10:59:58 +00:00
|
|
|
session_renumber_windows(target.s);
|
2012-04-29 17:20:01 +00:00
|
|
|
recalculate_sizes();
|
2020-04-13 10:59:58 +00:00
|
|
|
server_status_session(target.s);
|
2012-04-29 17:20:01 +00:00
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2012-04-29 17:20:01 +00:00
|
|
|
}
|
2020-04-13 10:59:58 +00:00
|
|
|
if (cmd_find_target(&target, item, tflag, CMD_FIND_WINDOW,
|
2017-04-22 10:22:39 +00:00
|
|
|
CMD_FIND_WINDOW_INDEX) != 0)
|
|
|
|
return (CMD_RETURN_ERROR);
|
2020-04-13 10:59:58 +00:00
|
|
|
dst = target.s;
|
|
|
|
idx = target.idx;
|
2012-04-29 17:20:01 +00:00
|
|
|
|
2020-04-13 08:26:27 +00:00
|
|
|
kflag = args_has(args, 'k');
|
|
|
|
dflag = args_has(args, 'd');
|
|
|
|
sflag = args_has(args, 's');
|
2015-06-17 16:50:28 +00:00
|
|
|
|
2020-06-13 09:05:53 +00:00
|
|
|
before = args_has(args, 'b');
|
|
|
|
if (args_has(args, 'a') || before) {
|
2020-04-22 21:15:33 +00:00
|
|
|
if (target.wl != NULL)
|
2020-06-13 09:05:53 +00:00
|
|
|
idx = winlink_shuffle_up(dst, target.wl, before);
|
2020-04-22 21:15:33 +00:00
|
|
|
else
|
2020-06-13 09:05:53 +00:00
|
|
|
idx = winlink_shuffle_up(dst, dst->curw, before);
|
2020-04-22 21:15:33 +00:00
|
|
|
if (idx == -1)
|
2015-06-17 16:50:28 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
|
|
|
|
2020-04-13 10:59:58 +00:00
|
|
|
if (server_link_window(src, wl, dst, idx, kflag, !dflag, &cause) != 0) {
|
2020-04-22 21:15:33 +00:00
|
|
|
cmdq_error(item, "%s", cause);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cause);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2020-04-13 08:26:27 +00:00
|
|
|
if (cmd_get_entry(self) == &cmd_move_window_entry)
|
2014-10-27 22:40:29 +00:00
|
|
|
server_unlink_window(src, wl);
|
2015-04-21 21:24:49 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Renumber the winlinks in the src session only, the destination
|
|
|
|
* session already has the correct winlink id to us, either
|
|
|
|
* automatically or specified by -s.
|
|
|
|
*/
|
2015-10-27 15:58:42 +00:00
|
|
|
if (!sflag && options_get_number(src->options, "renumber-windows"))
|
2015-04-21 21:24:49 +00:00
|
|
|
session_renumber_windows(src);
|
|
|
|
|
2009-06-01 22:58:49 +00:00
|
|
|
recalculate_sizes();
|
|
|
|
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|