comparison runtime/doc/channel.txt @ 16086:bd7461db24b3

Update runtime files. commit https://github.com/vim/vim/commit/63b74a8362b14576b21d342dc424d0396ca8ea27 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Mar 24 15:09:13 2019 +0100 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sun, 24 Mar 2019 15:15:06 +0100
parents 71c17b688bc6
children 0e473e9e70c2
comparison
equal deleted inserted replaced
16085:9ee6ccf783f3 16086:bd7461db24b3
1 *channel.txt* For Vim version 8.1. Last change: 2018 Apr 18 1 *channel.txt* For Vim version 8.1. Last change: 2019 Mar 21
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
306 higher. 306 higher.
307 307
308 308
309 Command "redraw" ~ 309 Command "redraw" ~
310 310
311 The other commands do not update the screen, so that you can send a sequence 311 The other commands do not explicitly update the screen, so that you can send a
312 of commands without the cursor moving around. You must end with the "redraw" 312 sequence of commands without the cursor moving around. A redraw can happen as
313 command to show any changed text and show the cursor where it belongs. 313 a side effect of some commands. You must end with the "redraw" command to
314 show any changed text and show the cursor where it belongs.
314 315
315 The argument is normally an empty string: 316 The argument is normally an empty string:
316 ["redraw", ""] ~ 317 ["redraw", ""] ~
317 To first clear the screen pass "force": 318 To first clear the screen pass "force":
318 ["redraw", "force"] ~ 319 ["redraw", "force"] ~