aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-12-03 15:07:54 -0500
committerGitHub <noreply@github.com>2017-12-03 15:07:54 -0500
commita494c999189200c36786f7c453c5c316244da0d1 (patch)
tree10d2ee4ed3b3aeed360dd7bff6892017b010cd02
parent27a577586eace687c47e7398845178208cae524a (diff)
parente9990b43c23ef5f9cb10c75d6f0db00aa862db0e (diff)
downloadrneovim-a494c999189200c36786f7c453c5c316244da0d1.tar.gz
rneovim-a494c999189200c36786f7c453c5c316244da0d1.tar.bz2
rneovim-a494c999189200c36786f7c453c5c316244da0d1.zip
Merge pull request #7683 from fszymanski/master
Fix job_control doc
-rw-r--r--runtime/doc/job_control.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/job_control.txt b/runtime/doc/job_control.txt
index e57015db22..ed5f16902a 100644
--- a/runtime/doc/job_control.txt
+++ b/runtime/doc/job_control.txt
@@ -58,7 +58,7 @@ Description of what happens:
- The first shell is idle, waiting to read commands from its stdin.
- The second shell is started with -c which executes the command (a for-loop
printing 0 through 9) and then exits.
- - `JobHandler()` callback is passed to |jobstart()| to handle various job
+ - `OnEvent()` callback is passed to |jobstart()| to handle various job
events. It displays stdout/stderr data received from the shells.
For |on_stdout| and |on_stderr| see |channel-callback|.