summaryrefslogtreecommitdiffstats
path: root/cmd-new-window.c
diff options
context:
space:
mode:
authornicm <nicm>2021-02-05 12:23:49 +0000
committernicm <nicm>2021-02-05 12:23:49 +0000
commitbe471c328ea0ae04026e4ff32fda7b7f11c74255 (patch)
tree55f959803e1c254ce7a467e45706c61c21cc69ec /cmd-new-window.c
parentc13f2e1135df1f8be78262eb6f5ccb251a7e1d61 (diff)
Add a -S flag to new-window to make it select the existing window if one
with the given name already exists rather than failing with an error. Also add a format to check if a window or session name exists which allows the same with other commands. Requested by and discussed with kn@.
Diffstat (limited to 'cmd-new-window.c')
-rw-r--r--cmd-new-window.c38
1 files changed, 34 insertions, 4 deletions
diff --git a/cmd-new-window.c b/cmd-new-window.c
index ca3e66c4..712e2a79 100644
--- a/cmd-new-window.c
+++ b/cmd-new-window.c
@@ -38,8 +38,8 @@ const struct cmd_entry cmd_new_window_entry = {
.name = "new-window",
.alias = "neww",
- .args = { "abc:de:F:kn:Pt:", 0, -1 },
- .usage = "[-abdkP] [-c start-directory] [-e environment] [-F format] "
+ .args = { "abc:de:F:kn:PSt:", 0, -1 },
+ .usage = "[-abdkPS] [-c start-directory] [-e environment] [-F format] "
"[-n window-name] " CMD_TARGET_WINDOW_USAGE " [command]",
.target = { 't', CMD_FIND_WINDOW, CMD_FIND_WINDOW_INDEX },
@@ -52,6 +52,7 @@ static enum cmd_retval
cmd_new_window_exec(struct cmd *self, struct cmdq_item *item)
{
struct args *args = cmd_get_args(self);
+ struct client *c = cmdq_get_client(item);
struct cmd_find_state *current = cmdq_get_current(item);
struct cmd_find_state *target = cmdq_get_target(item);
struct spawn_context sc;
@@ -59,12 +60,41 @@ cmd_new_window_exec(struct cmd *self, struct cmdq_item *item)
struct session *s = target->s;
struct winlink *wl = target->wl;
int idx = target->idx, before;
- struct winlink *new_wl;
+ struct winlink *new_wl = NULL;
char *cause = NULL, *cp;
- const char *template, *add;
+ const char *template, *add, *name;
struct cmd_find_state fs;
struct args_value *value;
+ /*
+ * 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) {
+ RB_FOREACH(wl, winlinks, &s->windows) {
+ if (strcmp(wl->window->name, name) != 0)
+ continue;
+ if (new_wl == NULL) {
+ new_wl = wl;
+ continue;
+ }
+ cmdq_error(item, "multiple windows named %s", name);
+ return (CMD_RETURN_ERROR);
+ }
+ 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);
+ }
+ }
+
+
before = args_has(args, 'b');
if (args_has(args, 'a') || before) {
idx = winlink_shuffle_up(s, wl, before);