diff options
author | Aleksa Sarai <cyphar@cyphar.com> | 2016-06-07 03:48:03 +1000 |
---|---|---|
committer | Aleksa Sarai <cyphar@cyphar.com> | 2016-06-07 03:48:03 +1000 |
commit | 2c44d9257287c3e804dcc5a2bfe073c20554c0b9 (patch) | |
tree | 5b1623c1ced01b4d08c3bd1834fcf3a33780130b /src/nvim/os/pty_process_unix.c | |
parent | 999590b313ef32ca29c4ddba20c5b719730ee7ff (diff) | |
download | rneovim-2c44d9257287c3e804dcc5a2bfe073c20554c0b9.tar.gz rneovim-2c44d9257287c3e804dcc5a2bfe073c20554c0b9.tar.bz2 rneovim-2c44d9257287c3e804dcc5a2bfe073c20554c0b9.zip |
eval: allow setting cwd in {jobstart,termopen}()
Processes in vim are always started in the current directory, which
causes issues when the process is a daemon and the current directory is
a mountpoint. Fix this by adding an option to set the cwd of the new
process with jobstart(). In addition, fix termopen() so that it actually
uses the cwd option from the dict (it couldn't previously set the cwd
value due to dead code).
Signed-off-by: Aleksa Sarai <cyphar@cyphar.com>
Diffstat (limited to 'src/nvim/os/pty_process_unix.c')
-rw-r--r-- | src/nvim/os/pty_process_unix.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/nvim/os/pty_process_unix.c b/src/nvim/os/pty_process_unix.c index d0a38e663b..436de030ba 100644 --- a/src/nvim/os/pty_process_unix.c +++ b/src/nvim/os/pty_process_unix.c @@ -28,6 +28,7 @@ #include "nvim/event/process.h" #include "nvim/os/pty_process_unix.h" #include "nvim/log.h" +#include "nvim/os/os.h" #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/pty_process_unix.c.generated.h" @@ -131,6 +132,12 @@ static void init_child(PtyProcess *ptyproc) FUNC_ATTR_NONNULL_ALL signal(SIGTERM, SIG_DFL); signal(SIGALRM, SIG_DFL); + Process *proc = (Process *)ptyproc; + if (proc->cwd && os_chdir(proc->cwd) != 0) { + fprintf(stderr, "chdir failed: %s\n", strerror(errno)); + return; + } + setenv("TERM", ptyproc->term_name ? ptyproc->term_name : "ansi", 1); execvp(ptyproc->process.argv[0], ptyproc->process.argv); fprintf(stderr, "execvp failed: %s\n", strerror(errno)); |