comparison runtime/doc/channel.txt @ 18053:8ac85adee561

Update runtime files Commit: https://github.com/vim/vim/commit/8fe1000e9c3438d0ff36cf2340f0f0e48f8fb89f Author: Bram Moolenaar <Bram@vim.org> Date: Wed Sep 11 22:56:44 2019 +0200 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Wed, 11 Sep 2019 23:00:05 +0200
parents 4ab97fdf7ff7
children 6848b809a26e
comparison
equal deleted inserted replaced
18052:5023a656f85e 18053:8ac85adee561
1 *channel.txt* For Vim version 8.1. Last change: 2019 Aug 22 1 *channel.txt* For Vim version 8.1. Last change: 2019 Sep 11
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
505 for this specific request. 505 for this specific request.
506 506
507 ch_evalexpr() waits for a response and returns the decoded 507 ch_evalexpr() waits for a response and returns the decoded
508 expression. When there is an error or timeout it returns an 508 expression. When there is an error or timeout it returns an
509 empty string. 509 empty string.
510
511 Note that while waiting for the response, Vim handles other
512 messages. You need to make sure this doesn't cause trouble.
510 513
511 Can also be used as a |method|: > 514 Can also be used as a |method|: >
512 GetChannel()->ch_evalexpr(expr) 515 GetChannel()->ch_evalexpr(expr)
513 516
514 517