aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-04-16 08:44:28 +0200
committerGitHub <noreply@github.com>2018-04-16 08:44:28 +0200
commited6a113804a21022072e0b27da22f36bbcc5443b (patch)
treec769aebffd5e246d3faaafdfc1796b8bb3d649b7 /runtime
parent7598e6cf1741e2352bdb409a5a2fbc130f9117b9 (diff)
parentb2c066409d19deb6228b7448e5c0367117031753 (diff)
downloadrneovim-ed6a113804a21022072e0b27da22f36bbcc5443b.tar.gz
rneovim-ed6a113804a21022072e0b27da22f36bbcc5443b.tar.bz2
rneovim-ed6a113804a21022072e0b27da22f36bbcc5443b.zip
Merge #8273 'job-control: avoid kill-timer race'
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt7
1 files changed, 3 insertions, 4 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 20f0eb303b..fffdcef8d9 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -5033,10 +5033,9 @@ jobstart({cmd}[, {opts}]) *jobstart()*
width : (pty only) Width of the terminal screen
height : (pty only) Height of the terminal screen
TERM : (pty only) $TERM environment variable
- detach : (non-pty only) Detach the job process from the
- nvim process. The process will not get killed
- when nvim exits. If the process dies before
- nvim exits, "on_exit" will still be invoked.
+ detach : (non-pty only) Detach the job process: it will
+ not be killed when Nvim exits. If the process
+ exits before Nvim, "on_exit" will be invoked.
{opts} is passed as |self| dictionary to the callback; the
caller may set other keys to pass application-specific data.