comparison runtime/doc/insert.txt @ 15729:fe57e4f0eac1

Update runtime files. commit https://github.com/vim/vim/commit/314dd79cac2adc10304212d1980d23ecf6782cfc Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 3 15:27:20 2019 +0100 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sun, 03 Feb 2019 15:30:09 +0100
parents f0f06837a699
children 0375e54f0adc
comparison
equal deleted inserted replaced
15728:479381bd1728 15729:fe57e4f0eac1
1 *insert.txt* For Vim version 8.1. Last change: 2019 Jan 11 1 *insert.txt* For Vim version 8.1. Last change: 2019 Jan 29
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1076 The only value currently recognized is "always", the 1076 The only value currently recognized is "always", the
1077 effect is that the function is called whenever the 1077 effect is that the function is called whenever the
1078 leading text is changed. 1078 leading text is changed.
1079 1079
1080 If you want to suppress the warning message for an empty result, return 1080 If you want to suppress the warning message for an empty result, return
1081 v:none. This is useful to implement asynchronous completion with complete(). 1081 |v:none|. This is useful to implement asynchronous completion with
1082 |complete()|.
1082 1083
1083 Other items are ignored. 1084 Other items are ignored.
1084 1085
1085 For acting upon end of completion, see the |CompleteDone| autocommand event. 1086 For acting upon end of completion, see the |CompleteDone| autocommand event.
1086 1087