aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2016-11-17 18:40:59 +0100
committerGitHub <noreply@github.com>2016-11-17 18:40:59 +0100
commitacbce46782c4e948e7f6a79bbeb58aac62c4c9ab (patch)
tree3d97a2ee3c4c3bedd081d78752565dbfa4280e62 /runtime
parentc3a7a94a12ba9ee772deac14fe512c84b9febe69 (diff)
parent1d4563771bcdaca0e6ec3eba1ca3ee6461d7afb5 (diff)
downloadrneovim-acbce46782c4e948e7f6a79bbeb58aac62c4c9ab.tar.gz
rneovim-acbce46782c4e948e7f6a79bbeb58aac62c4c9ab.tar.bz2
rneovim-acbce46782c4e948e7f6a79bbeb58aac62c4c9ab.zip
Merge pull request #5624 from bfredl/jobcloseterm
jobs: ensure calling jobclose() on a pty job sends SIGHUP
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 64f58c5599..9c6cbd5a1a 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -4411,7 +4411,8 @@ jobclose({job}[, {stream}]) {Nvim} *jobclose()*
Close {job}'s {stream}, which can be one of "stdin", "stdout",
"stderr" or "rpc" (closes the rpc channel for a job started
with the "rpc" option.) If {stream} is omitted, all streams
- are closed.
+ are closed. If the job is a pty job, this will then close the
+ pty master, sending SIGHUP to the job process.
jobpid({job}) {Nvim} *jobpid()*
Return the pid (process id) of {job}.