diff options
author | nicm <nicm> | 2021-03-02 10:56:45 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-03-02 10:56:45 +0000 |
commit | c44750792a9683c5cd6f9df5a69e7417b88772d2 (patch) | |
tree | c60638c0067f6238a670260ce48c94a42e03acfb /cmd-run-shell.c | |
parent | de3a898e8af335325039a4165525fff1d5e1a1b0 (diff) | |
download | rtmux-c44750792a9683c5cd6f9df5a69e7417b88772d2.tar.gz rtmux-c44750792a9683c5cd6f9df5a69e7417b88772d2.tar.bz2 rtmux-c44750792a9683c5cd6f9df5a69e7417b88772d2.zip |
Drop support for popups where the content is provided directly to tmux
(which does not have many practical uses) and only support running a
program in the popup. display-popup is now simpler and can accept
multiple arguments to avoid escaping problems (like the other commands).
Diffstat (limited to 'cmd-run-shell.c')
-rw-r--r-- | cmd-run-shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-run-shell.c b/cmd-run-shell.c index b259276d..4f30d05d 100644 --- a/cmd-run-shell.c +++ b/cmd-run-shell.c @@ -174,7 +174,7 @@ cmd_run_shell_timer(__unused int fd, __unused short events, void* arg) enum cmd_parse_status status; if (cmd != NULL && cdata->shell) { - if (job_run(cmd, cdata->s, cdata->cwd, NULL, + if (job_run(cmd, 0, NULL, cdata->s, cdata->cwd, NULL, cmd_run_shell_callback, cmd_run_shell_free, cdata, cdata->flags, -1, -1) == NULL) cmd_run_shell_free(cdata); |