mirror of
https://github.com/tmux/tmux.git
synced 2025-01-07 16:28:48 +00:00
Pass the cmd item to format expansion so that mouse formats work.
This commit is contained in:
parent
1c8f7c1f7a
commit
d388dbdea9
@ -190,7 +190,7 @@ cmd_display_menu_exec(struct cmd *self, struct cmdq_item *item)
|
|||||||
return (CMD_RETURN_NORMAL);
|
return (CMD_RETURN_NORMAL);
|
||||||
|
|
||||||
if (args_has(args, 'T'))
|
if (args_has(args, 'T'))
|
||||||
title = format_single(NULL, args_get(args, 'T'), c, s, wl, wp);
|
title = format_single(item, args_get(args, 'T'), c, s, wl, wp);
|
||||||
else
|
else
|
||||||
title = xstrdup("");
|
title = xstrdup("");
|
||||||
|
|
||||||
@ -298,13 +298,13 @@ cmd_display_popup_exec(struct cmd *self, struct cmdq_item *item)
|
|||||||
|
|
||||||
value = args_get(args, 'd');
|
value = args_get(args, 'd');
|
||||||
if (value != NULL)
|
if (value != NULL)
|
||||||
cwd = format_single(NULL, value, c, fs->s, fs->wl, fs->wp);
|
cwd = format_single(item, value, c, fs->s, fs->wl, fs->wp);
|
||||||
else
|
else
|
||||||
cwd = xstrdup(server_client_get_cwd(c, fs->s));
|
cwd = xstrdup(server_client_get_cwd(c, fs->s));
|
||||||
|
|
||||||
value = args_get(args, 'R');
|
value = args_get(args, 'R');
|
||||||
if (value != NULL)
|
if (value != NULL)
|
||||||
shellcmd = format_single(NULL, value, c, fs->s, fs->wl, fs->wp);
|
shellcmd = format_single(item, value, c, fs->s, fs->wl, fs->wp);
|
||||||
|
|
||||||
if (args_has(args, 'K'))
|
if (args_has(args, 'K'))
|
||||||
flags |= POPUP_WRITEKEYS;
|
flags |= POPUP_WRITEKEYS;
|
||||||
|
Loading…
Reference in New Issue
Block a user