diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-01-22 19:23:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-22 19:23:29 +0100 |
commit | 91bd1ddf3b5572076a233d6113c6cb092faa74f2 (patch) | |
tree | fd98dbd9591ea59ec5ae5ba06d3439cb3a3d4830 /runtime | |
parent | e53e860759e8b74a98072bc333a49b48649ad6f9 (diff) | |
parent | 041ec8997a7f613f2ca13bf339c652f117fcb809 (diff) | |
download | rneovim-91bd1ddf3b5572076a233d6113c6cb092faa74f2.tar.gz rneovim-91bd1ddf3b5572076a233d6113c6cb092faa74f2.tar.bz2 rneovim-91bd1ddf3b5572076a233d6113c6cb092faa74f2.zip |
Merge pull request #11740 from Billy4195/fix_jobstop
make jobstop() return 0 instead of throw error for already stopped job
Diffstat (limited to 'runtime')
-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 cd02449475..69b8b3cf39 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -5502,6 +5502,9 @@ jobstop({id}) *jobstop()* (if any) will be invoked. See |job-control|. + Returns 1 for valid job id, 0 for invalid id, including jobs have + exited or stopped. + jobwait({jobs}[, {timeout}]) *jobwait()* Waits for jobs and their |on_exit| handlers to complete. |