diff options
author | James McCoy <jamessan@jamessan.com> | 2019-12-13 06:52:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-13 06:52:48 -0500 |
commit | 9f3d483c79f03c48239fdc82cc02e8685a03d22a (patch) | |
tree | 7dba4a0c2253fe814ad28ee7a258c3aa0731b479 /runtime/doc/eval.txt | |
parent | bc879dd1f163b8eac3955baee5ed5792d906e98c (diff) | |
parent | 91b313a904c039a9b6a53a7afc9f66e67a1e12fc (diff) | |
download | rneovim-9f3d483c79f03c48239fdc82cc02e8685a03d22a.tar.gz rneovim-9f3d483c79f03c48239fdc82cc02e8685a03d22a.tar.bz2 rneovim-9f3d483c79f03c48239fdc82cc02e8685a03d22a.zip |
Merge pull request #7202 from teto/jobstart_env
[RFC] override environment for jobstart
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index ab65cc4560..597175b5e5 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -5451,6 +5451,9 @@ jobstart({cmd}[, {opts}]) *jobstart()* |on_exit| : exit event handler (function name or |Funcref|) cwd : Working directory of the job; defaults to |current-directory|. + env : A dict of strings to append (or replace see + |clear_env|) to the current environment. + clear_env: If set, use the exact values passed in |env| rpc : If set, |msgpack-rpc| will be used to communicate with the job over stdin and stdout. "on_stdout" is then ignored, but "on_stderr" can still be used. |