diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-06-01 20:14:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-01 20:14:29 +0200 |
commit | ed24a297e5c5b997e28cb0ad5a896823d482b697 (patch) | |
tree | eb1204f97b07e597b7fe2cf1f9d6ec5dcb1d5e8b /runtime/doc/eval.txt | |
parent | 95ece7d046ae3517c60e497be434db88d28891b3 (diff) | |
download | rneovim-ed24a297e5c5b997e28cb0ad5a896823d482b697.tar.gz rneovim-ed24a297e5c5b997e28cb0ad5a896823d482b697.tar.bz2 rneovim-ed24a297e5c5b997e28cb0ad5a896823d482b697.zip |
doc [ci skip] #10097
- fix broken links (|buffered| was renamed to |channel-buffered|)
- rewrite `:h channel-lines`
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r-- | runtime/doc/eval.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt index c96f51772d..17ed0b2d0f 100644 --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -5272,9 +5272,9 @@ jobstart({cmd}[, {opts}]) *jobstart()* *jobstart-options* {opts} is a dictionary with these keys: |on_stdout|: stdout event handler (function name or |Funcref|) - stdout_buffered : read stdout in |buffered| mode. + stdout_buffered : read stdout in |channel-buffered| mode. |on_stderr|: stderr event handler (function name or |Funcref|) - stderr_buffered : read stderr in |buffered| mode. + stderr_buffered : read stderr in |channel-buffered| mode. |on_exit| : exit event handler (function name or |Funcref|) cwd : Working directory of the job; defaults to |current-directory|. @@ -7681,7 +7681,7 @@ sockconnect({mode}, {address}, {opts}) *sockconnect()* {opts} is a dictionary with these keys: |on_data| : callback invoked when data was read from socket - data_buffered : read data from socket in |buffered| mode. + data_buffered : read socket data in |channel-buffered| mode. rpc : If set, |msgpack-rpc| will be used to communicate over the socket. Returns: @@ -7850,7 +7850,7 @@ stdioopen({opts}) *stdioopen()* {opts} is a dictionary with these keys: |on_stdin| : callback invoked when stdin is written to. - stdin_buffered : read stdin in |buffered| mode. + stdin_buffered : read stdin in |channel-buffered| mode. rpc : If set, |msgpack-rpc| will be used to communicate over stdio Returns: |