mirror of
https://github.com/tmux/tmux.git
synced 2025-04-22 20:38:48 +00:00
With -k, kill window after using it to work out -c path. Reported by
jmacristovao at gmail dot com.
This commit is contained in:
parent
7aeb4473ad
commit
40982a01fb
@ -82,26 +82,6 @@ cmd_new_window_exec(struct cmd *self, struct cmd_q *cmdq)
|
|||||||
}
|
}
|
||||||
detached = args_has(args, 'd');
|
detached = args_has(args, 'd');
|
||||||
|
|
||||||
wl = NULL;
|
|
||||||
if (idx != -1)
|
|
||||||
wl = winlink_find_by_index(&s->windows, idx);
|
|
||||||
if (wl != NULL && args_has(args, 'k')) {
|
|
||||||
/*
|
|
||||||
* Can't use session_detach as it will destroy session if this
|
|
||||||
* makes it empty.
|
|
||||||
*/
|
|
||||||
notify_window_unlinked(s, wl->window);
|
|
||||||
wl->flags &= ~WINLINK_ALERTFLAGS;
|
|
||||||
winlink_stack_remove(&s->lastw, wl);
|
|
||||||
winlink_remove(&s->windows, wl);
|
|
||||||
|
|
||||||
/* Force select/redraw if current. */
|
|
||||||
if (wl == s->curw) {
|
|
||||||
detached = 0;
|
|
||||||
s->curw = NULL;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (args->argc == 0)
|
if (args->argc == 0)
|
||||||
cmd = options_get_string(&s->options, "default-command");
|
cmd = options_get_string(&s->options, "default-command");
|
||||||
else
|
else
|
||||||
@ -133,6 +113,26 @@ cmd_new_window_exec(struct cmd *self, struct cmd_q *cmdq)
|
|||||||
else
|
else
|
||||||
cwd = s->cwd;
|
cwd = s->cwd;
|
||||||
|
|
||||||
|
wl = NULL;
|
||||||
|
if (idx != -1)
|
||||||
|
wl = winlink_find_by_index(&s->windows, idx);
|
||||||
|
if (wl != NULL && args_has(args, 'k')) {
|
||||||
|
/*
|
||||||
|
* Can't use session_detach as it will destroy session if this
|
||||||
|
* makes it empty.
|
||||||
|
*/
|
||||||
|
notify_window_unlinked(s, wl->window);
|
||||||
|
wl->flags &= ~WINLINK_ALERTFLAGS;
|
||||||
|
winlink_stack_remove(&s->lastw, wl);
|
||||||
|
winlink_remove(&s->windows, wl);
|
||||||
|
|
||||||
|
/* Force select/redraw if current. */
|
||||||
|
if (wl == s->curw) {
|
||||||
|
detached = 0;
|
||||||
|
s->curw = NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (idx == -1)
|
if (idx == -1)
|
||||||
idx = -1 - options_get_number(&s->options, "base-index");
|
idx = -1 - options_get_number(&s->options, "base-index");
|
||||||
wl = session_new(s, args_get(args, 'n'), cmd, cwd, idx, &cause);
|
wl = session_new(s, args_get(args, 'n'), cmd, cwd, idx, &cause);
|
||||||
|
Loading…
Reference in New Issue
Block a user