diff options
author | nicm <nicm> | 2017-02-03 11:57:27 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-02-03 11:57:27 +0000 |
commit | 7d23d019c0df197d724ced7fec21dc2047634c9b (patch) | |
tree | 7f07df20858bf10aef7db907bf4998b53fedd7db /cmd-if-shell.c | |
parent | dd0c8147795c518de443c33895c614e52b42677f (diff) | |
download | rtmux-7d23d019c0df197d724ced7fec21dc2047634c9b.tar.gz rtmux-7d23d019c0df197d724ced7fec21dc2047634c9b.tar.bz2 rtmux-7d23d019c0df197d724ced7fec21dc2047634c9b.zip |
Add a window or pane id "tag" to each format tree and use it to separate
jobs, this means that if the same job is used for different windows or
panes (for example in pane-border-format), it will be run separately for
each pane.
Diffstat (limited to 'cmd-if-shell.c')
-rw-r--r-- | cmd-if-shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-if-shell.c b/cmd-if-shell.c index 93910f34..ec4bf68e 100644 --- a/cmd-if-shell.c +++ b/cmd-if-shell.c @@ -82,7 +82,7 @@ cmd_if_shell_exec(struct cmd *self, struct cmdq_item *item) else cwd = NULL; - ft = format_create(item, 0); + ft = format_create(item, FORMAT_NONE, 0); format_defaults(ft, item->state.c, s, wl, wp); shellcmd = format_expand(ft, args->argv[0]); format_free(ft); |