1
0
mirror of https://github.com/tmux/tmux.git synced 2025-04-04 07:08:50 +00:00

Run session command before window in choose-tree.

This commit is contained in:
Nicholas Marriott 2013-03-21 16:23:07 +00:00
parent 51d989f5df
commit 66414029a1

View File

@ -37,7 +37,7 @@ enum cmd_retval cmd_choose_tree_exec(struct cmd *, struct cmd_ctx *);
const struct cmd_entry cmd_choose_tree_entry = { const struct cmd_entry cmd_choose_tree_entry = {
"choose-tree", NULL, "choose-tree", NULL,
"S:W:swub:c:t:", 0, 1, "S:W:swub:c:t:", 0, 1,
"[-swu] [-b session-template] [-c window template] [-S format] " \ "[-suw] [-b session-template] [-c window template] [-S format] " \
"[-W format] " CMD_TARGET_WINDOW_USAGE, "[-W format] " CMD_TARGET_WINDOW_USAGE,
0, 0,
NULL, NULL,
@ -174,7 +174,7 @@ cmd_choose_tree_exec(struct cmd *self, struct cmd_ctx *ctx)
} }
wcd = window_choose_add_session(wl->window->active, wcd = window_choose_add_session(wl->window->active,
c, s2, ses_template, (char *)ses_action, idx_ses); c, s2, ses_template, ses_action, idx_ses);
/* If we're just choosing sessions, skip choosing windows. */ /* If we're just choosing sessions, skip choosing windows. */
if (sflag && !wflag) { if (sflag && !wflag) {
@ -203,8 +203,8 @@ windows_only:
cur_win = idx_ses; cur_win = idx_ses;
} }
xasprintf(&final_win_action, "%s ; %s", win_action, xasprintf(&final_win_action, "%s ; %s",
wcd ? wcd->command : ""); wcd ? wcd->command : "", win_action);
if (win_ses != win_max) if (win_ses != win_max)
cur_win_template = final_win_template_middle; cur_win_template = final_win_template_middle;