comparison runtime/doc/channel.txt @ 8795:aba2d0a01290

commit https://github.com/vim/vim/commit/7db8f6f4f85e5d0526d23107b2a5e2334dc23354 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 29 23:12:46 2016 +0200 Updated runtime files.
author Christian Brabandt <cb@256bit.org>
date Tue, 29 Mar 2016 23:15:06 +0200
parents b1a19a2f73f0
children 0bdeaf7092bc
comparison
equal deleted inserted replaced
8794:c861b4fd579f 8795:aba2d0a01290
1 *channel.txt* For Vim version 7.4. Last change: 2016 Mar 26 1 *channel.txt* For Vim version 7.4. Last change: 2016 Mar 28
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
614 "err_io": "file" stderr writes to a file 614 "err_io": "file" stderr writes to a file
615 "err_io": "buffer" stderr appends to a buffer 615 "err_io": "buffer" stderr appends to a buffer
616 "err_name": "/path/file" the name of the file or buffer to write to 616 "err_name": "/path/file" the name of the file or buffer to write to
617 "err_buf": number the number of the buffer to write to 617 "err_buf": number the number of the buffer to write to
618 618
619 "block_write": number only for testing: pretend every other write to stdin
620 will block
621
619 622
620 Writing to a buffer ~ 623 Writing to a buffer ~
621 624
622 When the out_io or err_io mode is "buffer" and there is a callback, the text 625 When the out_io or err_io mode is "buffer" and there is a callback, the text
623 is appended to the buffer before invoking the callback. 626 is appended to the buffer before invoking the callback.