diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2015-04-10 15:22:46 +0200 |
---|---|---|
committer | Marco Hinz <mh.codebro@gmail.com> | 2015-04-11 18:32:18 +0200 |
commit | 0e65962a6838ef36f8c518f067e753cbf40a87e5 (patch) | |
tree | 13828f1133ac5f2d723894ca82bd3ef0cefb539b /runtime/doc | |
parent | 8171fc4cbc9cfe368bca7a7e711e198b976bf4f7 (diff) | |
download | rneovim-0e65962a6838ef36f8c518f067e753cbf40a87e5.tar.gz rneovim-0e65962a6838ef36f8c518f067e753cbf40a87e5.tar.bz2 rneovim-0e65962a6838ef36f8c518f067e753cbf40a87e5.zip |
Remove all references to JobActivity
The JobActivity event got replaced by callback functions provided to
jobstart() or termopen().
It got removed here:
https://github.com/neovim/neovim/commit/6e7757ad51dfe3b2de857ff8a8688718ff6115ac
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/autocmd.txt | 2 | ||||
-rw-r--r-- | runtime/doc/eval.txt | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/autocmd.txt b/runtime/doc/autocmd.txt index 1393131ab7..f771c225f4 100644 --- a/runtime/doc/autocmd.txt +++ b/runtime/doc/autocmd.txt @@ -791,7 +791,7 @@ ShellCmdPost After executing a shell command with |:!cmd|, |:make| and |:grep|. Can be used to check for any changed files. For non-blocking shell commands, see - |JobActivity|. + |job-control|. *ShellFilterPost* ShellFilterPost After executing a shell command with ":{range}!cmd", ":w !cmd" or ":r !cmd". diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index 6215756f08..fc4bebbd6e 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -4059,9 +4059,9 @@ jobstop({job}) {Nvim} *jobstop()* Stop a job created with |jobstart()| by sending a `SIGTERM` to the corresponding process. If the process doesn't exit cleanly soon, a `SIGKILL` will be sent. When the job is - finally closed, a |JobActivity| event will trigger with - `v:job_data[0]` set to `exited`. See |job-control| for more - information. + finally closed, the exit handler provided to |jobstart()| or + |termopen()| will be run. + See |job-control| for more information. jobwait({ids}[, {timeout}]) {Nvim} *jobwait()* Wait for a set of jobs to finish. The {ids} argument is a list |