diff options
author | nicm <nicm> | 2018-09-27 07:43:18 +0000 |
---|---|---|
committer | nicm <nicm> | 2018-09-27 07:43:18 +0000 |
commit | 228e1a39513701385ffa6241acf6647f08a4b00c (patch) | |
tree | 9dbebfe1c91c8a013805483a26775c0132ce53d8 /job.c | |
parent | 7d59f82cf96a91ac560d06aef0fe5c8880cf2244 (diff) | |
download | rtmux-228e1a39513701385ffa6241acf6647f08a4b00c.tar.gz rtmux-228e1a39513701385ffa6241acf6647f08a4b00c.tar.bz2 rtmux-228e1a39513701385ffa6241acf6647f08a4b00c.zip |
Use same working directory rules for jobs as new windows rather than
always starting in home, GitHub issue 1488.
Diffstat (limited to 'job.c')
-rw-r--r-- | job.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -80,6 +80,7 @@ job_run(const char *cmd, struct session *s, const char *cwd, if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, out) != 0) return (NULL); + log_debug("%s: cmd=%s, cwd=%s", __func__, cmd, cwd); /* * Do not set TERM during .tmux.conf, it is nice to be able to use |