diff options
author | James McCoy <jamessan@jamessan.com> | 2022-02-11 16:21:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-11 16:21:16 -0500 |
commit | 906182065bd73e4fbedeecc347ea8c8647c3304f (patch) | |
tree | db00df70e1a7d83ba61a89c6db9e3d5036dcc3ac | |
parent | 46e0f635daae182824f336654885017b60e3d838 (diff) | |
parent | 8090753880697451a4d18777d9f258d234811747 (diff) | |
download | rneovim-906182065bd73e4fbedeecc347ea8c8647c3304f.tar.gz rneovim-906182065bd73e4fbedeecc347ea8c8647c3304f.tar.bz2 rneovim-906182065bd73e4fbedeecc347ea8c8647c3304f.zip |
Merge pull request #17325 from glacambre/stdioopen_doc
-rw-r--r-- | runtime/doc/builtin.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt index 6195dd4a0b..f371ad92cc 100644 --- a/runtime/doc/builtin.txt +++ b/runtime/doc/builtin.txt @@ -7433,6 +7433,9 @@ stdioopen({opts}) *stdioopen()* {opts} is a dictionary with these keys: |on_stdin| : callback invoked when stdin is written to. + on_print : callback invoked when Nvim needs to print a + message, with the message (whose type is string) + as sole argument. stdin_buffered : read stdin in |channel-buffered| mode. rpc : If set, |msgpack-rpc| will be used to communicate over stdio |