2009-06-01 22:58:49 +00:00
|
|
|
/* $OpenBSD$ */
|
|
|
|
|
|
|
|
/*
|
2016-01-19 15:59:12 +00:00
|
|
|
* Copyright (c) 2007 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>
|
|
|
|
|
2013-10-10 12:26:34 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
#include <stdlib.h>
|
2013-10-10 12:26:34 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Create a new window.
|
|
|
|
*/
|
|
|
|
|
2014-10-20 23:35:28 +00:00
|
|
|
#define NEW_WINDOW_TEMPLATE "#{session_name}:#{window_index}.#{pane_index}"
|
|
|
|
|
2016-10-16 19:04:05 +00:00
|
|
|
static enum cmd_retval cmd_new_window_exec(struct cmd *, struct cmdq_item *);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_new_window_entry = {
|
2015-12-13 21:53:57 +00:00
|
|
|
.name = "new-window",
|
|
|
|
.alias = "neww",
|
|
|
|
|
2021-08-21 10:22:38 +00:00
|
|
|
.args = { "abc:de:F:kn:PSt:", 0, -1, NULL },
|
2021-02-05 12:23:49 +00:00
|
|
|
.usage = "[-abdkPS] [-c start-directory] [-e environment] [-F format] "
|
2021-08-27 17:25:55 +00:00
|
|
|
"[-n window-name] " CMD_TARGET_WINDOW_USAGE " [shell-command]",
|
2015-12-13 21:53:57 +00:00
|
|
|
|
2017-04-22 10:22:39 +00:00
|
|
|
.target = { 't', CMD_FIND_WINDOW, CMD_FIND_WINDOW_INDEX },
|
2015-12-14 00:31:54 +00:00
|
|
|
|
|
|
|
.flags = 0,
|
2015-12-13 21:53:57 +00:00
|
|
|
.exec = cmd_new_window_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_new_window_exec(struct cmd *self, struct cmdq_item *item)
|
2009-06-01 22:58:49 +00:00
|
|
|
{
|
2020-04-13 08:26:27 +00:00
|
|
|
struct args *args = cmd_get_args(self);
|
2021-02-05 12:23:49 +00:00
|
|
|
struct client *c = cmdq_get_client(item);
|
2020-04-13 14:46:04 +00:00
|
|
|
struct cmd_find_state *current = cmdq_get_current(item);
|
2020-04-13 10:59:58 +00:00
|
|
|
struct cmd_find_state *target = cmdq_get_target(item);
|
2021-08-20 19:50:16 +00:00
|
|
|
struct spawn_context sc = { 0 };
|
2020-04-13 20:51:57 +00:00
|
|
|
struct client *tc = cmdq_get_target_client(item);
|
2020-04-13 10:59:58 +00:00
|
|
|
struct session *s = target->s;
|
2021-08-20 19:50:16 +00:00
|
|
|
struct winlink *wl = target->wl, *new_wl = NULL;
|
2020-06-13 09:05:53 +00:00
|
|
|
int idx = target->idx, before;
|
2023-09-01 14:24:46 +00:00
|
|
|
char *cause = NULL, *cp, *expanded;
|
2021-08-20 18:59:53 +00:00
|
|
|
const char *template, *name;
|
2016-10-13 22:48:51 +00:00
|
|
|
struct cmd_find_state fs;
|
2021-08-20 18:59:53 +00:00
|
|
|
struct args_value *av;
|
2011-01-04 00:42:46 +00:00
|
|
|
|
2021-02-05 12:23:49 +00:00
|
|
|
/*
|
|
|
|
* If -S and -n are given and -t is not and a single window with this
|
|
|
|
* name already exists, select it.
|
|
|
|
*/
|
|
|
|
name = args_get(args, 'n');
|
|
|
|
if (args_has(args, 'S') && name != NULL && target->idx == -1) {
|
2023-09-01 14:24:46 +00:00
|
|
|
expanded = format_single(item, name, c, s, NULL, NULL);
|
2021-02-05 12:23:49 +00:00
|
|
|
RB_FOREACH(wl, winlinks, &s->windows) {
|
2023-09-01 14:24:46 +00:00
|
|
|
if (strcmp(wl->window->name, expanded) != 0)
|
2021-02-05 12:23:49 +00:00
|
|
|
continue;
|
|
|
|
if (new_wl == NULL) {
|
|
|
|
new_wl = wl;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
cmdq_error(item, "multiple windows named %s", name);
|
2023-09-01 14:24:46 +00:00
|
|
|
free(expanded);
|
2021-02-05 12:23:49 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
|
|
|
}
|
2023-09-01 14:24:46 +00:00
|
|
|
free(expanded);
|
2021-02-05 12:23:49 +00:00
|
|
|
if (new_wl != NULL) {
|
|
|
|
if (args_has(args, 'd'))
|
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
if (session_set_current(s, new_wl) == 0)
|
|
|
|
server_redraw_session(s);
|
|
|
|
if (c != NULL && c->session != NULL)
|
|
|
|
s->curw->window->latest = c;
|
|
|
|
recalculate_sizes();
|
|
|
|
return (CMD_RETURN_NORMAL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-13 09:05:53 +00:00
|
|
|
before = args_has(args, 'b');
|
|
|
|
if (args_has(args, 'a') || before) {
|
|
|
|
idx = winlink_shuffle_up(s, wl, before);
|
2020-06-25 08:56:02 +00:00
|
|
|
if (idx == -1)
|
|
|
|
idx = target->idx;
|
2014-05-13 08:08:32 +00:00
|
|
|
}
|
2013-10-10 12:26:34 +00:00
|
|
|
|
2019-04-17 14:37:48 +00:00
|
|
|
sc.item = item;
|
|
|
|
sc.s = s;
|
2020-04-13 20:51:57 +00:00
|
|
|
sc.tc = tc;
|
2013-11-23 09:18:29 +00:00
|
|
|
|
2019-04-17 14:37:48 +00:00
|
|
|
sc.name = args_get(args, 'n');
|
2021-08-27 17:25:55 +00:00
|
|
|
args_to_vector(args, &sc.argc, &sc.argv);
|
2019-04-28 20:05:50 +00:00
|
|
|
sc.environ = environ_create();
|
|
|
|
|
2021-08-20 18:59:53 +00:00
|
|
|
av = args_first_value(args, 'e');
|
|
|
|
while (av != NULL) {
|
2021-08-21 10:28:05 +00:00
|
|
|
environ_put(sc.environ, av->string, 0);
|
2021-08-20 18:59:53 +00:00
|
|
|
av = args_next_value(av);
|
2019-04-28 20:05:50 +00:00
|
|
|
}
|
2019-04-17 14:37:48 +00:00
|
|
|
|
|
|
|
sc.idx = idx;
|
|
|
|
sc.cwd = args_get(args, 'c');
|
|
|
|
|
|
|
|
sc.flags = 0;
|
|
|
|
if (args_has(args, 'd'))
|
|
|
|
sc.flags |= SPAWN_DETACHED;
|
|
|
|
if (args_has(args, 'k'))
|
|
|
|
sc.flags |= SPAWN_KILL;
|
|
|
|
|
|
|
|
if ((new_wl = spawn_window(&sc, &cause)) == NULL) {
|
2016-10-16 19:04:05 +00:00
|
|
|
cmdq_error(item, "create window failed: %s", cause);
|
2012-07-10 11:53:01 +00:00
|
|
|
free(cause);
|
2021-08-20 19:50:16 +00:00
|
|
|
if (sc.argv != NULL)
|
|
|
|
cmd_free_argv(sc.argc, sc.argv);
|
2021-08-20 18:59:53 +00:00
|
|
|
environ_free(sc.environ);
|
2019-04-17 14:37:48 +00:00
|
|
|
return (CMD_RETURN_ERROR);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|
2019-04-17 14:37:48 +00:00
|
|
|
if (!args_has(args, 'd') || new_wl == s->curw) {
|
|
|
|
cmd_find_from_winlink(current, new_wl, 0);
|
2009-10-10 10:02:48 +00:00
|
|
|
server_redraw_session_group(s);
|
2009-12-03 22:50:09 +00:00
|
|
|
} else
|
2009-10-10 10:02:48 +00:00
|
|
|
server_status_session_group(s);
|
2009-06-01 22:58:49 +00:00
|
|
|
|
2012-03-04 20:50:53 +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 = NEW_WINDOW_TEMPLATE;
|
2020-04-13 20:51:57 +00:00
|
|
|
cp = format_single(item, template, tc, s, new_wl,
|
2020-06-25 08:56:02 +00:00
|
|
|
new_wl->window->active);
|
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-04 20:50:53 +00:00
|
|
|
}
|
|
|
|
|
2019-04-17 14:37:48 +00:00
|
|
|
cmd_find_from_winlink(&fs, new_wl, 0);
|
2019-04-26 11:38:51 +00:00
|
|
|
cmdq_insert_hook(s, item, &fs, "after-new-window");
|
2016-10-16 17:55:14 +00:00
|
|
|
|
2021-08-20 19:50:16 +00:00
|
|
|
if (sc.argv != NULL)
|
|
|
|
cmd_free_argv(sc.argc, sc.argv);
|
2019-04-28 20:05:50 +00:00
|
|
|
environ_free(sc.environ);
|
2012-07-11 07:10:15 +00:00
|
|
|
return (CMD_RETURN_NORMAL);
|
2009-06-01 22:58:49 +00:00
|
|
|
}
|