comparison runtime/doc/insert.txt @ 18750:82a28df1e2d5

Update runtime files. Commit: https://github.com/vim/vim/commit/91359014b359cf816bf943fe2c7d492996263def Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 30 17:57:03 2019 +0100 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sat, 30 Nov 2019 18:00:05 +0100
parents 14d2a210fab1
children af69c9335223
comparison
equal deleted inserted replaced
18749:8217e179eb58 18750:82a28df1e2d5
1145 After the info popup is created it can be found with |popup_findinfo()| and 1145 After the info popup is created it can be found with |popup_findinfo()| and
1146 properties can be changed with |popup_setoptions()|. 1146 properties can be changed with |popup_setoptions()|.
1147 1147
1148 *complete-popuphidden* 1148 *complete-popuphidden*
1149 If the information for the popup is obtained asynchronously, use "popuphidden" 1149 If the information for the popup is obtained asynchronously, use "popuphidden"
1150 in 'completeopt'. The info popup will then be initally hidden and 1150 in 'completeopt'. The info popup will then be initially hidden and
1151 |popup_show()| must be called once it has been filled with the info. This can 1151 |popup_show()| must be called once it has been filled with the info. This can
1152 be done with a |CompleteChanged| autocommand, something like this: > 1152 be done with a |CompleteChanged| autocommand, something like this: >
1153 set completeopt+=popuphidden 1153 set completeopt+=popuphidden
1154 au CompleteChanged * call UpdateCompleteInfo() 1154 au CompleteChanged * call UpdateCompleteInfo()
1155 func UpdateCompleteInfo() 1155 func UpdateCompleteInfo()